Changeset 1011 for trunk/autoquest-ui-swt/pom.xml
- Timestamp:
- 12/12/12 12:33:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-ui-swt/pom.xml
r983 r1011 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 2 <parent> 3 <groupId>de.ugoe.cs.autoquest</groupId> 4 <artifactId>autoquest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 7 <modelVersion>4.0.0</modelVersion> 8 <artifactId>autoquest-ui-swt</artifactId> 9 <name>autoquest-ui-swt</name> 10 <licenses> 11 <license> 12 <name>The Apache Software License, Version 2.0</name> 13 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 14 </license> 15 </licenses> 1 <project 2 xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 5 > 6 <parent> 7 <groupId>de.ugoe.cs.autoquest</groupId> 8 <artifactId>autoquest</artifactId> 9 <version>0.0.1-SNAPSHOT</version> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>autoquest-ui-swt</artifactId> 13 <name>autoquest-ui-swt</name> 14 <licenses> 15 <license> 16 <name>The Apache Software License, Version 2.0</name> 17 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 18 </license> 19 </licenses> 16 20 <scm> 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 21 <url>${autoquest-scm-trunk-dir}/autoquest-ui-swt</url> 22 </scm> 23 <repositories> 24 <repository> 25 <id>swt-repo</id> 26 <url>https://swt-repo.googlecode.com/svn/repo</url> 27 </repository> 28 </repositories> 29 <dependencies> 30 <dependency> 31 <groupId>de.ugoe.cs</groupId> 32 <artifactId>java-utils</artifactId> 33 <version>0.0.1-SNAPSHOT</version> 34 </dependency> 35 <dependency> 36 <groupId>de.ugoe.cs.autoquest</groupId> 37 <artifactId>autoquest-core-events</artifactId> 38 <version>${project.parent.version}</version> 39 </dependency> 40 <dependency> 41 <groupId>de.ugoe.cs.autoquest</groupId> 42 <artifactId>autoquest-core-assertions</artifactId> 43 <version>${project.parent.version}</version> 44 </dependency> 45 <dependency> 46 <groupId>de.ugoe.cs.autoquest</groupId> 47 <artifactId>autoquest-core-usageprofiles</artifactId> 48 <version>${project.parent.version}</version> 49 </dependency> 50 <dependency> 51 <groupId>${swt.groupId}</groupId> 52 <artifactId>${swt.artifactId}</artifactId> 53 <version>3.8</version> 54 </dependency> 55 <dependency> 56 <groupId>org.eclipse</groupId> 57 <artifactId>ui-forms</artifactId> 58 <version>3.5</version> 59 </dependency> 60 </dependencies> 57 61 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 62 <profiles> 63 <profile> 64 <id>Windows-x86</id> 65 <activation> 66 <os> 67 <family>windows</family> 68 <arch>x86</arch> 69 </os> 70 </activation> 71 <properties> 72 <swt.groupId>org.eclipse.swt</swt.groupId> 73 <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId> 74 </properties> 75 </profile> 76 <profile> 77 <id>Windows-amd64</id> 78 <activation> 79 <os> 80 <family>windows</family> 81 <arch>amd64</arch> 82 </os> 83 </activation> 84 <properties> 85 <swt.groupId>org.eclipse.swt</swt.groupId> 86 <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId> 87 </properties> 88 </profile> 89 <profile> 90 <id>Linux-x86</id> 91 <activation> 92 <os> 93 <family>linux</family> 94 <arch>x86</arch> 95 </os> 96 </activation> 97 <properties> 98 <swt.groupId>org.eclipse.swt</swt.groupId> 99 <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> 100 </properties> 101 </profile> 102 <profile> 103 <id>Linux-i386</id> 104 <activation> 105 <os> 106 <family>linux</family> 107 <arch>i386</arch> 108 </os> 109 </activation> 110 <properties> 111 <swt.groupId>org.eclipse.swt</swt.groupId> 112 <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> 113 </properties> 114 </profile> 115 <profile> 116 <id>Linux-x86_64</id> 117 <activation> 118 <os> 119 <family>linux</family> 120 <arch>x86_64</arch> 121 </os> 122 </activation> 123 <properties> 124 <swt.groupId>org.eclipse.swt</swt.groupId> 125 <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> 126 </properties> 127 </profile> 128 <profile> 129 <id>Linux-amd64</id> 130 <activation> 131 <os> 132 <family>linux</family> 133 <arch>amd64</arch> 134 </os> 135 </activation> 136 <properties> 137 <swt.groupId>org.eclipse.swt</swt.groupId> 138 <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> 139 </properties> 140 </profile> 141 <profile> 142 <id>Linux-ppc64</id> 143 <activation> 144 <os> 145 <family>linux</family> 146 <arch>ppc64</arch> 147 </os> 148 </activation> 149 <properties> 150 <swt.groupId>org.eclipse.swt</swt.groupId> 151 <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId> 152 </properties> 153 </profile> 154 </profiles> 151 155 </project>
Note: See TracChangeset
for help on using the changeset viewer.