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