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.2.4-SNAPSHOT</version> |
---|
6 | <relativePath>../autoquest/pom.xml</relativePath> |
---|
7 | </parent> |
---|
8 | <modelVersion>4.0.0</modelVersion> |
---|
9 | <artifactId>autoquest-ui-swt</artifactId> |
---|
10 | <name>autoquest-ui-swt</name> |
---|
11 | <licenses> |
---|
12 | <license> |
---|
13 | <name>The Apache Software License, Version 2.0</name> |
---|
14 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
---|
15 | </license> |
---|
16 | </licenses> |
---|
17 | <scm> |
---|
18 | <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url> |
---|
19 | <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection> |
---|
20 | </scm> |
---|
21 | <dependencies> |
---|
22 | <dependency> |
---|
23 | <groupId>de.ugoe.cs</groupId> |
---|
24 | <artifactId>java-utils</artifactId> |
---|
25 | <version>${project.parent.version}</version> |
---|
26 | </dependency> |
---|
27 | <dependency> |
---|
28 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
29 | <artifactId>autoquest-core-events</artifactId> |
---|
30 | <version>${project.parent.version}</version> |
---|
31 | </dependency> |
---|
32 | <dependency> |
---|
33 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
34 | <artifactId>autoquest-core-assertions</artifactId> |
---|
35 | <version>${project.parent.version}</version> |
---|
36 | </dependency> |
---|
37 | <dependency> |
---|
38 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
39 | <artifactId>autoquest-core-usageprofiles</artifactId> |
---|
40 | <version>${project.parent.version}</version> |
---|
41 | </dependency> |
---|
42 | <dependency> |
---|
43 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
44 | <artifactId>autoquest-core-tasktrees</artifactId> |
---|
45 | <version>${project.parent.version}</version> |
---|
46 | </dependency> |
---|
47 | <dependency> |
---|
48 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
49 | <artifactId>autoquest-core-usability</artifactId> |
---|
50 | <version>${project.parent.version}</version> |
---|
51 | </dependency> |
---|
52 | <dependency> |
---|
53 | <groupId>org.eclipse</groupId> |
---|
54 | <artifactId>ui-forms</artifactId> |
---|
55 | <version>3.5</version> |
---|
56 | </dependency> |
---|
57 | <dependency> |
---|
58 | <groupId>org.jfree</groupId> |
---|
59 | <artifactId>jfreechart</artifactId> |
---|
60 | <version>1.0.14</version> |
---|
61 | </dependency> |
---|
62 | </dependencies> |
---|
63 | |
---|
64 | <profiles> |
---|
65 | <profile> |
---|
66 | <id>Windows-x86</id> |
---|
67 | <activation> |
---|
68 | <os> |
---|
69 | <family>windows</family> |
---|
70 | <arch>x86</arch> |
---|
71 | </os> |
---|
72 | </activation> |
---|
73 | <dependencies> |
---|
74 | <dependency> |
---|
75 | <groupId>org.eclipse.swt</groupId> |
---|
76 | <artifactId>org.eclipse.swt.win32.win32.x86</artifactId> |
---|
77 | <version>4.3</version> |
---|
78 | </dependency> |
---|
79 | </dependencies> |
---|
80 | <build> |
---|
81 | <plugins> |
---|
82 | <plugin> |
---|
83 | <groupId>org.apache.maven.plugins</groupId> |
---|
84 | <artifactId>maven-jar-plugin</artifactId> |
---|
85 | <configuration> |
---|
86 | <archive> |
---|
87 | <manifest> |
---|
88 | <addClasspath>true</addClasspath> |
---|
89 | </manifest> |
---|
90 | </archive> |
---|
91 | <classifier>Windows-x86</classifier> |
---|
92 | </configuration> |
---|
93 | </plugin> |
---|
94 | </plugins> |
---|
95 | </build> |
---|
96 | </profile> |
---|
97 | <profile> |
---|
98 | <id>Windows-amd64</id> |
---|
99 | <activation> |
---|
100 | <os> |
---|
101 | <family>windows</family> |
---|
102 | <arch>amd64</arch> |
---|
103 | </os> |
---|
104 | </activation> |
---|
105 | <dependencies> |
---|
106 | <dependency> |
---|
107 | <groupId>org.eclipse.swt</groupId> |
---|
108 | <artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId> |
---|
109 | <version>4.3</version> |
---|
110 | </dependency> |
---|
111 | </dependencies> |
---|
112 | <build> |
---|
113 | <plugins> |
---|
114 | <plugin> |
---|
115 | <groupId>org.apache.maven.plugins</groupId> |
---|
116 | <artifactId>maven-jar-plugin</artifactId> |
---|
117 | <configuration> |
---|
118 | <archive> |
---|
119 | <manifest> |
---|
120 | <addClasspath>true</addClasspath> |
---|
121 | </manifest> |
---|
122 | </archive> |
---|
123 | <classifier>Windows-amd64</classifier> |
---|
124 | </configuration> |
---|
125 | </plugin> |
---|
126 | </plugins> |
---|
127 | </build> |
---|
128 | </profile> |
---|
129 | <profile> |
---|
130 | <id>Linux-x86</id> |
---|
131 | <activation> |
---|
132 | <os> |
---|
133 | <family>linux</family> |
---|
134 | <arch>x86</arch> |
---|
135 | </os> |
---|
136 | </activation> |
---|
137 | <dependencies> |
---|
138 | <dependency> |
---|
139 | <groupId>org.eclipse.swt</groupId> |
---|
140 | <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId> |
---|
141 | <version>4.3</version> |
---|
142 | </dependency> |
---|
143 | </dependencies> |
---|
144 | <build> |
---|
145 | <plugins> |
---|
146 | <plugin> |
---|
147 | <groupId>org.apache.maven.plugins</groupId> |
---|
148 | <artifactId>maven-jar-plugin</artifactId> |
---|
149 | <configuration> |
---|
150 | <archive> |
---|
151 | <manifest> |
---|
152 | <addClasspath>true</addClasspath> |
---|
153 | </manifest> |
---|
154 | </archive> |
---|
155 | <classifier>Linux-x86</classifier> |
---|
156 | </configuration> |
---|
157 | </plugin> |
---|
158 | </plugins> |
---|
159 | </build> |
---|
160 | </profile> |
---|
161 | <profile> |
---|
162 | <id>Linux-i386</id> |
---|
163 | <activation> |
---|
164 | <os> |
---|
165 | <family>linux</family> |
---|
166 | <arch>i386</arch> |
---|
167 | </os> |
---|
168 | </activation> |
---|
169 | <dependencies> |
---|
170 | <dependency> |
---|
171 | <groupId>org.eclipse.swt</groupId> |
---|
172 | <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId> |
---|
173 | <version>4.3</version> |
---|
174 | </dependency> |
---|
175 | </dependencies> |
---|
176 | <build> |
---|
177 | <plugins> |
---|
178 | <plugin> |
---|
179 | <groupId>org.apache.maven.plugins</groupId> |
---|
180 | <artifactId>maven-jar-plugin</artifactId> |
---|
181 | <configuration> |
---|
182 | <archive> |
---|
183 | <manifest> |
---|
184 | <addClasspath>true</addClasspath> |
---|
185 | </manifest> |
---|
186 | </archive> |
---|
187 | <classifier>Linux-i386</classifier> |
---|
188 | </configuration> |
---|
189 | </plugin> |
---|
190 | </plugins> |
---|
191 | </build> |
---|
192 | </profile> |
---|
193 | <profile> |
---|
194 | <id>Linux-x86_64</id> |
---|
195 | <activation> |
---|
196 | <os> |
---|
197 | <family>linux</family> |
---|
198 | <arch>x86_64</arch> |
---|
199 | </os> |
---|
200 | </activation> |
---|
201 | <dependencies> |
---|
202 | <dependency> |
---|
203 | <groupId>org.eclipse.swt</groupId> |
---|
204 | <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId> |
---|
205 | <version>4.3</version> |
---|
206 | </dependency> |
---|
207 | </dependencies> |
---|
208 | <build> |
---|
209 | <plugins> |
---|
210 | <plugin> |
---|
211 | <groupId>org.apache.maven.plugins</groupId> |
---|
212 | <artifactId>maven-jar-plugin</artifactId> |
---|
213 | <configuration> |
---|
214 | <archive> |
---|
215 | <manifest> |
---|
216 | <addClasspath>true</addClasspath> |
---|
217 | </manifest> |
---|
218 | </archive> |
---|
219 | <classifier>Linux-x86_64</classifier> |
---|
220 | </configuration> |
---|
221 | </plugin> |
---|
222 | </plugins> |
---|
223 | </build> |
---|
224 | </profile> |
---|
225 | <profile> |
---|
226 | <id>Linux-amd64</id> |
---|
227 | <activation> |
---|
228 | <os> |
---|
229 | <family>linux</family> |
---|
230 | <arch>amd64</arch> |
---|
231 | </os> |
---|
232 | </activation> |
---|
233 | <dependencies> |
---|
234 | <dependency> |
---|
235 | <groupId>org.eclipse.swt</groupId> |
---|
236 | <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId> |
---|
237 | <version>4.3</version> |
---|
238 | </dependency> |
---|
239 | </dependencies> |
---|
240 | <build> |
---|
241 | <plugins> |
---|
242 | <plugin> |
---|
243 | <groupId>org.apache.maven.plugins</groupId> |
---|
244 | <artifactId>maven-jar-plugin</artifactId> |
---|
245 | <configuration> |
---|
246 | <archive> |
---|
247 | <manifest> |
---|
248 | <addClasspath>true</addClasspath> |
---|
249 | </manifest> |
---|
250 | </archive> |
---|
251 | <classifier>Linux-amd64</classifier> |
---|
252 | </configuration> |
---|
253 | </plugin> |
---|
254 | </plugins> |
---|
255 | </build> |
---|
256 | </profile> |
---|
257 | <profile> |
---|
258 | <id>Linux-ppc64</id> |
---|
259 | <activation> |
---|
260 | <os> |
---|
261 | <family>linux</family> |
---|
262 | <arch>ppc64</arch> |
---|
263 | </os> |
---|
264 | </activation> |
---|
265 | <dependencies> |
---|
266 | <dependency> |
---|
267 | <groupId>org.eclipse.swt</groupId> |
---|
268 | <artifactId>org.eclipse.swt.gtk.linux.ppc64</artifactId> |
---|
269 | <version>4.3</version> |
---|
270 | </dependency> |
---|
271 | </dependencies> |
---|
272 | <build> |
---|
273 | <plugins> |
---|
274 | <plugin> |
---|
275 | <groupId>org.apache.maven.plugins</groupId> |
---|
276 | <artifactId>maven-jar-plugin</artifactId> |
---|
277 | <configuration> |
---|
278 | <archive> |
---|
279 | <manifest> |
---|
280 | <addClasspath>true</addClasspath> |
---|
281 | </manifest> |
---|
282 | </archive> |
---|
283 | <classifier>Linux-ppc64</classifier> |
---|
284 | </configuration> |
---|
285 | </plugin> |
---|
286 | </plugins> |
---|
287 | </build> |
---|
288 | </profile> |
---|
289 | </profiles> |
---|
290 | <build> |
---|
291 | <plugins> |
---|
292 | <plugin> |
---|
293 | <groupId>org.apache.maven.plugins</groupId> |
---|
294 | <artifactId>maven-jar-plugin</artifactId> |
---|
295 | <configuration> |
---|
296 | <archive> |
---|
297 | <manifest> |
---|
298 | <addClasspath>true</addClasspath> |
---|
299 | </manifest> |
---|
300 | </archive> |
---|
301 | <classifier>${envClassifier}</classifier> |
---|
302 | </configuration> |
---|
303 | </plugin> |
---|
304 | </plugins> |
---|
305 | </build> |
---|
306 | </project> |
---|