tmf remote: Bug 460847: SWTBot tests for remote fetching of traces
[deliverable/tracecompass.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2011, Red Hat, Inc.
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14 <modelVersion>4.0.0</modelVersion>
15
16 <prerequisites>
17 <maven>3.0</maven>
18 </prerequisites>
19
20 <groupId>org.eclipse.tracecompass</groupId>
21 <artifactId>org.eclipse.tracecompass</artifactId>
22 <version>1.0.0-SNAPSHOT</version>
23 <packaging>pom</packaging>
24 <name>Trace Compass Parent</name>
25
26 <licenses>
27 <license>
28 <name>Eclipse Public License v1.0</name>
29 <comments>
30 All rights reserved.
31
32 This program and the accompanying materials are made
33 available under the terms of the Eclipse Public License v1.0
34 which accompanies this distribution, and is available at
35 http://www.eclipse.org/legal/epl-v10.htm
36 </comments>
37 </license>
38 </licenses>
39
40 <properties>
41 <base.test.vmargs>-Xms256m -Xmx1024m -XX:MaxPermSize=256m</base.test.vmargs>
42 <tycho-version>0.22.0</tycho-version>
43 <tycho-extras-version>0.22.0</tycho-extras-version>
44 <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/tracecompass/org.eclipse.tracecompass.git</tycho.scmUrl>
45 <target-platform>tracecompass-eStaging</target-platform>
46 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
47 <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
48 <sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
49 <sonar.java.source>1.7</sonar.java.source>
50 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51 <help-docs-eclipserun-repo>http://download.eclipse.org/eclipse/updates/4.4</help-docs-eclipserun-repo>
52 </properties>
53
54 <pluginRepositories>
55 <pluginRepository>
56 <id>repo.eclipse.org</id>
57 <url>https://repo.eclipse.org/content/groups/releases/</url>
58 </pluginRepository>
59 <pluginRepository>
60 <id>tycho-snapshots</id>
61 <url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
62 </pluginRepository>
63 <pluginRepository>
64 <id>jboss-public-repository-group</id>
65 <name>JBoss Public Repository Group</name>
66 <url>http://repository.jboss.org/nexus/content/groups/public/</url>
67 </pluginRepository>
68 </pluginRepositories>
69
70 <profiles>
71 <profile>
72 <id>build-rcp</id>
73 <modules>
74 <module>org.eclipse.tracecompass.rcp.product</module>
75 </modules>
76 </profile>
77 <profile>
78 <id>sign-update-site</id>
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.eclipse.tycho.extras</groupId>
83 <artifactId>tycho-pack200a-plugin</artifactId>
84 <version>${tycho-extras-version}</version>
85 <executions>
86 <execution>
87 <id>pack200-normalize</id>
88 <goals>
89 <goal>normalize</goal>
90 </goals>
91 <phase>package</phase>
92 </execution>
93 </executions>
94 </plugin>
95 <plugin>
96 <groupId>org.eclipse.cbi.maven.plugins</groupId>
97 <artifactId>eclipse-jarsigner-plugin</artifactId>
98 <version>1.1.1</version>
99 <executions>
100 <execution>
101 <id>sign</id>
102 <phase>package</phase>
103 <goals>
104 <goal>sign</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
109 <plugin>
110 <groupId>org.eclipse.tycho.extras</groupId>
111 <artifactId>tycho-pack200b-plugin</artifactId>
112 <version>${tycho-extras-version}</version>
113 <executions>
114 <execution>
115 <id>pack200-pack</id>
116 <goals>
117 <goal>pack</goal>
118 </goals>
119 <phase>package</phase>
120 </execution>
121 </executions>
122 </plugin>
123 </plugins>
124 </build>
125 </profile>
126 <profile>
127 <id>performance</id>
128 <modules>
129 <module>org.eclipse.tracecompass.alltests</module>
130 </modules>
131 </profile>
132 <profile>
133 <id>macosx</id>
134 <activation>
135 <os>
136 <family>mac</family>
137 </os>
138 </activation>
139 <properties>
140 <base.ui.test.vmargs>${base.test.vmargs} -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts</base.ui.test.vmargs>
141 </properties>
142 </profile>
143 <profile>
144 <id>not-macosx</id>
145 <activation>
146 <os>
147 <family>!mac</family>
148 </os>
149 </activation>
150 <properties>
151 <!-- Disable webkit integration, especially unstable on Linux -->
152 <base.ui.test.vmargs>${base.test.vmargs} -Dorg.eclipse.swt.browser.DefaultType=mozilla</base.ui.test.vmargs>
153 </properties>
154 </profile>
155 </profiles>
156
157 <modules>
158 <module>doc</module>
159 <module>org.eclipse.tracecompass.common.core</module>
160
161 <module>org.eclipse.tracecompass.btf</module>
162 <module>org.eclipse.tracecompass.btf.core</module>
163 <module>org.eclipse.tracecompass.btf.core.tests</module>
164 <module>org.eclipse.tracecompass.btf.ui</module>
165
166 <module>org.eclipse.tracecompass.ctf</module>
167 <module>org.eclipse.tracecompass.ctf.core</module>
168 <module>org.eclipse.tracecompass.ctf.core.tests</module>
169 <module>org.eclipse.tracecompass.ctf.parser</module>
170 <module>org.eclipse.tracecompass.ctf.parser.tests</module>
171
172 <module>org.eclipse.tracecompass.pcap.core</module>
173 <module>org.eclipse.tracecompass.pcap.core.tests</module>
174
175 <module>org.eclipse.tracecompass.statesystem.core</module>
176 <module>org.eclipse.tracecompass.statesystem.core.tests</module>
177
178 <module>org.eclipse.tracecompass.tmf</module>
179 <module>org.eclipse.tracecompass.tmf.core</module>
180 <module>org.eclipse.tracecompass.tmf.core.tests</module>
181 <module>org.eclipse.tracecompass.tmf.ui</module>
182 <module>org.eclipse.tracecompass.tmf.ui.tests</module>
183 <module>org.eclipse.tracecompass.tmf.ui.swtbot.tests</module>
184
185 <module>org.eclipse.tracecompass.tmf.ctf</module>
186 <module>org.eclipse.tracecompass.tmf.ctf.core</module>
187 <module>org.eclipse.tracecompass.tmf.ctf.core.tests</module>
188 <module>org.eclipse.tracecompass.tmf.ctf.ui.swtbot.tests</module>
189
190 <module>org.eclipse.tracecompass.tmf.pcap</module>
191 <module>org.eclipse.tracecompass.tmf.pcap.core</module>
192 <module>org.eclipse.tracecompass.tmf.pcap.core.tests</module>
193 <module>org.eclipse.tracecompass.tmf.pcap.ui</module>
194 <module>org.eclipse.tracecompass.tmf.pcap.ui.swtbot.tests</module>
195
196 <module>org.eclipse.tracecompass.tmf.analysis.xml.core</module>
197 <module>org.eclipse.tracecompass.tmf.analysis.xml.core.tests</module>
198 <module>org.eclipse.tracecompass.tmf.analysis.xml.ui</module>
199 <module>org.eclipse.tracecompass.tmf.analysis.xml.ui.tests</module>
200
201 <module>org.eclipse.tracecompass.tmf.remote</module>
202 <module>org.eclipse.tracecompass.tmf.remote.core</module>
203 <module>org.eclipse.tracecompass.tmf.remote.core.tests</module>
204 <module>org.eclipse.tracecompass.tmf.remote.ui</module>
205 <module>org.eclipse.tracecompass.tmf.remote.ui.swtbot.tests</module>
206
207 <module>org.eclipse.tracecompass.tmf.remote.ui.tests</module>
208
209 <module>org.eclipse.tracecompass.releng-site</module>
210 <module>org.eclipse.tracecompass.target</module>
211 <module>org.eclipse.tracecompass.testing</module>
212
213 <module>org.eclipse.tracecompass.analysis.os.linux.core</module>
214 <module>org.eclipse.tracecompass.analysis.os.linux.core.tests</module>
215 <module>org.eclipse.tracecompass.analysis.os.linux.ui</module>
216
217 <module>org.eclipse.tracecompass.lttng2.control</module>
218 <module>org.eclipse.tracecompass.lttng2.control.core</module>
219 <module>org.eclipse.tracecompass.lttng2.control.core.tests</module>
220 <module>org.eclipse.tracecompass.lttng2.control.ui</module>
221 <module>org.eclipse.tracecompass.lttng2.control.ui.tests</module>
222
223 <module>org.eclipse.tracecompass.lttng2.kernel</module>
224 <module>org.eclipse.tracecompass.lttng2.kernel.core</module>
225 <module>org.eclipse.tracecompass.lttng2.kernel.core.tests</module>
226 <module>org.eclipse.tracecompass.lttng2.kernel.ui</module>
227 <module>org.eclipse.tracecompass.lttng2.kernel.ui.swtbot.tests</module>
228
229 <module>org.eclipse.tracecompass.lttng2.ust</module>
230 <module>org.eclipse.tracecompass.lttng2.ust.core</module>
231 <module>org.eclipse.tracecompass.lttng2.ust.core.tests</module>
232 <module>org.eclipse.tracecompass.lttng2.ust.ui</module>
233 <module>org.eclipse.tracecompass.lttng2.ust.ui.tests</module>
234
235 <module>org.eclipse.tracecompass.gdbtrace</module>
236 <module>org.eclipse.tracecompass.gdbtrace.core</module>
237 <module>org.eclipse.tracecompass.gdbtrace.core.tests</module>
238 <module>org.eclipse.tracecompass.gdbtrace.ui</module>
239 <module>org.eclipse.tracecompass.gdbtrace.ui.tests</module>
240
241 <module>org.eclipse.tracecompass.rcp.branding</module>
242 <module>org.eclipse.tracecompass.rcp.branding.feature</module>
243 <module>org.eclipse.tracecompass.rcp</module>
244 <module>org.eclipse.tracecompass.rcp.ui</module>
245
246 <module>org.eclipse.tracecompass.examples</module>
247 </modules>
248
249 <build>
250 <plugins>
251 <plugin>
252 <groupId>org.eclipse.tycho</groupId>
253 <artifactId>target-platform-configuration</artifactId>
254 <version>${tycho-version}</version>
255 <configuration>
256 <includePackedArtifacts>true</includePackedArtifacts>
257 <environments>
258 <environment>
259 <os>win32</os>
260 <ws>win32</ws>
261 <arch>x86</arch>
262 </environment>
263 <environment>
264 <os>win32</os>
265 <ws>win32</ws>
266 <arch>x86_64</arch>
267 </environment>
268 <environment>
269 <os>macosx</os>
270 <ws>cocoa</ws>
271 <arch>x86_64</arch>
272 </environment>
273 <environment>
274 <os>linux</os>
275 <ws>gtk</ws>
276 <arch>x86</arch>
277 </environment>
278 <environment>
279 <os>linux</os>
280 <ws>gtk</ws>
281 <arch>x86_64</arch>
282 </environment>
283 </environments>
284 <target>
285 <artifact>
286 <groupId>org.eclipse.tracecompass</groupId>
287 <artifactId>org.eclipse.tracecompass.target</artifactId>
288 <classifier>${target-platform}</classifier>
289 <version>1.0.0</version>
290 </artifact>
291 </target>
292 <filters>
293 <filter>
294 <type>eclipse-plugin</type>
295 <id>org.eclipse.jdt.annotation</id>
296 <restrictTo>
297 <versionRange>[1.0,2.0)</versionRange>
298 </restrictTo>
299 </filter>
300 </filters>
301 </configuration>
302 </plugin>
303 <plugin>
304 <groupId>org.eclipse.tycho</groupId>
305 <artifactId>tycho-maven-plugin</artifactId>
306 <version>${tycho-version}</version>
307 <extensions>true</extensions>
308 </plugin>
309 <plugin>
310 <groupId>org.eclipse.tycho</groupId>
311 <artifactId>tycho-source-plugin</artifactId>
312 <version>${tycho-version}</version>
313 <executions>
314 <execution>
315 <id>plugin-source</id>
316 <goals>
317 <goal>plugin-source</goal>
318 </goals>
319 </execution>
320 </executions>
321 </plugin>
322 <plugin>
323 <groupId>org.eclipse.tycho.extras</groupId>
324 <artifactId>tycho-source-feature-plugin</artifactId>
325 <version>${tycho-version}</version>
326 <configuration>
327 <includeBinaryFeature>false</includeBinaryFeature>
328 </configuration>
329 <executions>
330 <execution>
331 <id>source-feature</id>
332 <phase>package</phase>
333 <goals>
334 <goal>source-feature</goal>
335 </goals>
336 </execution>
337 </executions>
338 </plugin>
339 <plugin>
340 <groupId>org.jacoco</groupId>
341 <artifactId>jacoco-maven-plugin</artifactId>
342 <version>0.7.4.201502262128</version>
343 <executions>
344 <execution>
345 <id>pre-test</id>
346 <goals>
347 <goal>prepare-agent</goal>
348 </goals>
349 <configuration>
350 <!-- Where to put jacoco coverage report -->
351 <destFile>${sonar.jacoco.reportPath}</destFile>
352 <includes>
353 <include>org.eclipse.tracecompass.*</include>
354 </includes>
355 <append>true</append>
356 </configuration>
357 </execution>
358 <execution>
359 <id>post-test</id>
360 <phase>post-integration-test</phase>
361 <goals>
362 <goal>report</goal>
363 </goals>
364 <configuration>
365 <dataFile>${sonar.jacoco.reportPath}</dataFile>
366 </configuration>
367 </execution>
368 </executions>
369 </plugin>
370 <plugin>
371 <groupId>org.eclipse.tycho.extras</groupId>
372 <artifactId>tycho-pack200b-plugin</artifactId>
373 <version>${tycho-extras-version}</version>
374 <executions>
375 <execution>
376 <id>pack200-pack</id>
377 <goals>
378 <goal>pack</goal>
379 </goals>
380 <phase>package</phase>
381 </execution>
382 </executions>
383 </plugin>
384 <plugin>
385 <groupId>org.eclipse.tycho</groupId>
386 <artifactId>tycho-p2-plugin</artifactId>
387 <version>${tycho-version}</version>
388 <executions>
389 <execution>
390 <id>p2-metadata</id>
391 <goals>
392 <goal>p2-metadata</goal>
393 </goals>
394 <phase>package</phase>
395 </execution>
396 </executions>
397 <configuration>
398 <defaultP2Metadata>false</defaultP2Metadata>
399 </configuration>
400 </plugin>
401 </plugins>
402 <pluginManagement>
403 <plugins>
404 <plugin>
405 <groupId>org.eclipse.tycho</groupId>
406 <artifactId>tycho-compiler-plugin</artifactId>
407 <version>${tycho-version}</version>
408 <configuration>
409 <encoding>UTF-8</encoding>
410 <useProjectSettings>true</useProjectSettings>
411 </configuration>
412 </plugin>
413 <plugin>
414 <groupId>org.eclipse.tycho</groupId>
415 <artifactId>target-platform-configuration</artifactId>
416 <version>${tycho-version}</version>
417 </plugin>
418 <plugin>
419 <groupId>org.eclipse.tycho</groupId>
420 <artifactId>tycho-p2-plugin</artifactId>
421 <version>${tycho-version}</version>
422 </plugin>
423 <plugin>
424 <groupId>org.eclipse.tycho</groupId>
425 <artifactId>tycho-p2-publisher-plugin</artifactId>
426 <version>${tycho-version}</version>
427 </plugin>
428 <plugin>
429 <groupId>org.eclipse.tycho</groupId>
430 <artifactId>tycho-p2-repository-plugin</artifactId>
431 <version>${tycho-version}</version>
432 </plugin>
433 <plugin>
434 <groupId>org.eclipse.tycho</groupId>
435 <artifactId>tycho-surefire-plugin</artifactId>
436 <version>${tycho-version}</version>
437 <configuration>
438 <useUIHarness>true</useUIHarness>
439 <useUIThread>true</useUIThread>
440 <dependencies>
441 <dependency>
442 <type>p2-installable-unit</type>
443 <artifactId>org.eclipse.platform.feature.group</artifactId>
444 <version>${sdk-version}</version>
445 </dependency>
446 </dependencies>
447 <product>org.eclipse.platform.ide</product>
448 <argLine>${tycho.testArgLine} -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=256m</argLine>
449 </configuration>
450 </plugin>
451 <plugin>
452 <groupId>org.eclipse.tycho</groupId>
453 <artifactId>tycho-versions-plugin</artifactId>
454 <version>${tycho-version}</version>
455 </plugin>
456 <plugin>
457 <groupId>org.eclipse.tycho</groupId>
458 <artifactId>tycho-packaging-plugin</artifactId>
459 <version>${tycho-version}</version>
460 <configuration>
461 <sourceReferences>
462 <generate>true</generate>
463 </sourceReferences>
464 </configuration>
465 <dependencies>
466 <dependency>
467 <groupId>org.eclipse.tycho.extras</groupId>
468 <artifactId>tycho-sourceref-jgit</artifactId>
469 <version>${tycho-extras-version}</version>
470 </dependency>
471 </dependencies>
472 </plugin>
473 <plugin>
474 <groupId>org.apache.maven.plugins</groupId>
475 <artifactId>maven-resources-plugin</artifactId>
476 <version>2.7</version>
477 <configuration>
478 <encoding>UTF-8</encoding>
479 </configuration>
480 </plugin>
481 <plugin>
482 <groupId>org.apache.maven.plugins</groupId>
483 <artifactId>maven-antrun-plugin</artifactId>
484 <version>1.8</version>
485 </plugin>
486 <plugin>
487 <groupId>org.apache.maven.plugins</groupId>
488 <artifactId>maven-site-plugin</artifactId>
489 <version>3.4</version>
490 </plugin>
491 <plugin>
492 <groupId>org.apache.maven.plugins</groupId>
493 <artifactId>maven-clean-plugin</artifactId>
494 <version>2.6.1</version>
495 </plugin>
496 <plugin>
497 <groupId>org.apache.maven.plugins</groupId>
498 <artifactId>maven-deploy-plugin</artifactId>
499 <version>2.8.2</version>
500 </plugin>
501 <plugin>
502 <groupId>org.apache.maven.plugins</groupId>
503 <artifactId>maven-install-plugin</artifactId>
504 <version>2.5.2</version>
505 </plugin>
506 <plugin>
507 <groupId>org.apache.maven.plugins</groupId>
508 <artifactId>maven-project-info-reports-plugin</artifactId>
509 <version>2.8</version>
510 </plugin>
511 <plugin>
512 <groupId>org.apache.maven.plugins</groupId>
513 <artifactId>maven-javadoc-plugin</artifactId>
514 <version>2.10.1</version>
515 <configuration>
516 <excludePackageNames>org.eclipse.tracecompass.internal.*:*.test*</excludePackageNames>
517 </configuration>
518 </plugin>
519 <plugin>
520 <groupId>org.jboss.tools.tycho-plugins</groupId>
521 <artifactId>repository-utils</artifactId>
522 <version>0.22.0</version>
523 </plugin>
524 <plugin>
525 <groupId>org.eclipse.tycho.extras</groupId>
526 <artifactId>tycho-eclipserun-plugin</artifactId>
527 <version>${tycho-extras-version}</version>
528 <configuration>
529 <dependencies>
530 <dependency>
531 <artifactId>org.apache.ant</artifactId>
532 <type>eclipse-plugin</type>
533 </dependency>
534 <dependency>
535 <artifactId>org.eclipse.help.base</artifactId>
536 <type>eclipse-plugin</type>
537 </dependency>
538 <dependency>
539 <artifactId>org.eclipse.ant.core</artifactId>
540 <type>eclipse-plugin</type>
541 </dependency>
542 </dependencies>
543 <!-- This needs to be explicitely set now, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=395281 -->
544 <repositories>
545 <repository>
546 <id>platform</id>
547 <layout>p2</layout>
548 <url>${help-docs-eclipserun-repo}</url>
549 </repository>
550 </repositories>
551 </configuration>
552 <executions>
553 <execution>
554 <goals>
555 <goal>eclipse-run</goal>
556 </goals>
557 <phase>compile</phase>
558 </execution>
559 </executions>
560 </plugin>
561 </plugins>
562 </pluginManagement>
563 </build>
564
565 </project>
This page took 0.04182 seconds and 6 git commands to generate.