[1011] | 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>
|
---|
[757] | 20 | <scm>
|
---|
[1011] | 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>
|
---|
[1094] | 51 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 52 | <artifactId>autoquest-core-tasktrees</artifactId>
|
---|
| 53 | <version>${project.parent.version}</version>
|
---|
| 54 | </dependency>
|
---|
| 55 | <dependency>
|
---|
[1011] | 56 | <groupId>${swt.groupId}</groupId>
|
---|
| 57 | <artifactId>${swt.artifactId}</artifactId>
|
---|
| 58 | <version>3.8</version>
|
---|
| 59 | </dependency>
|
---|
| 60 | <dependency>
|
---|
| 61 | <groupId>org.eclipse</groupId>
|
---|
| 62 | <artifactId>ui-forms</artifactId>
|
---|
| 63 | <version>3.5</version>
|
---|
| 64 | </dependency>
|
---|
| 65 | </dependencies>
|
---|
[526] | 66 |
|
---|
[1011] | 67 | <profiles>
|
---|
| 68 | <profile>
|
---|
| 69 | <id>Windows-x86</id>
|
---|
| 70 | <activation>
|
---|
| 71 | <os>
|
---|
| 72 | <family>windows</family>
|
---|
| 73 | <arch>x86</arch>
|
---|
| 74 | </os>
|
---|
| 75 | </activation>
|
---|
| 76 | <properties>
|
---|
| 77 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 78 | <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
|
---|
| 79 | </properties>
|
---|
| 80 | </profile>
|
---|
| 81 | <profile>
|
---|
| 82 | <id>Windows-amd64</id>
|
---|
| 83 | <activation>
|
---|
| 84 | <os>
|
---|
| 85 | <family>windows</family>
|
---|
| 86 | <arch>amd64</arch>
|
---|
| 87 | </os>
|
---|
| 88 | </activation>
|
---|
| 89 | <properties>
|
---|
| 90 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 91 | <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
|
---|
| 92 | </properties>
|
---|
| 93 | </profile>
|
---|
| 94 | <profile>
|
---|
| 95 | <id>Linux-x86</id>
|
---|
| 96 | <activation>
|
---|
| 97 | <os>
|
---|
| 98 | <family>linux</family>
|
---|
| 99 | <arch>x86</arch>
|
---|
| 100 | </os>
|
---|
| 101 | </activation>
|
---|
| 102 | <properties>
|
---|
| 103 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 104 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
---|
| 105 | </properties>
|
---|
| 106 | </profile>
|
---|
| 107 | <profile>
|
---|
| 108 | <id>Linux-i386</id>
|
---|
| 109 | <activation>
|
---|
| 110 | <os>
|
---|
| 111 | <family>linux</family>
|
---|
| 112 | <arch>i386</arch>
|
---|
| 113 | </os>
|
---|
| 114 | </activation>
|
---|
| 115 | <properties>
|
---|
| 116 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 117 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
---|
| 118 | </properties>
|
---|
| 119 | </profile>
|
---|
| 120 | <profile>
|
---|
| 121 | <id>Linux-x86_64</id>
|
---|
| 122 | <activation>
|
---|
| 123 | <os>
|
---|
| 124 | <family>linux</family>
|
---|
| 125 | <arch>x86_64</arch>
|
---|
| 126 | </os>
|
---|
| 127 | </activation>
|
---|
| 128 | <properties>
|
---|
| 129 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 130 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
---|
| 131 | </properties>
|
---|
| 132 | </profile>
|
---|
| 133 | <profile>
|
---|
| 134 | <id>Linux-amd64</id>
|
---|
| 135 | <activation>
|
---|
| 136 | <os>
|
---|
| 137 | <family>linux</family>
|
---|
| 138 | <arch>amd64</arch>
|
---|
| 139 | </os>
|
---|
| 140 | </activation>
|
---|
| 141 | <properties>
|
---|
| 142 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 143 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
---|
| 144 | </properties>
|
---|
| 145 | </profile>
|
---|
| 146 | <profile>
|
---|
| 147 | <id>Linux-ppc64</id>
|
---|
| 148 | <activation>
|
---|
| 149 | <os>
|
---|
| 150 | <family>linux</family>
|
---|
| 151 | <arch>ppc64</arch>
|
---|
| 152 | </os>
|
---|
| 153 | </activation>
|
---|
| 154 | <properties>
|
---|
| 155 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 156 | <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
|
---|
| 157 | </properties>
|
---|
| 158 | </profile>
|
---|
| 159 | </profiles>
|
---|
[1014] | 160 | <build>
|
---|
| 161 | <plugins>
|
---|
| 162 | <plugin>
|
---|
| 163 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 164 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 165 | <configuration>
|
---|
| 166 | <archive>
|
---|
| 167 | <manifest>
|
---|
| 168 | <addClasspath>true</addClasspath>
|
---|
| 169 | </manifest>
|
---|
| 170 | </archive>
|
---|
| 171 | </configuration>
|
---|
| 172 | </plugin>
|
---|
| 173 | </plugins>
|
---|
| 174 | </build>
|
---|
[526] | 175 | </project> |
---|