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