Add support for displaying of CTF context info in TMF (Bug 385494)
[deliverable/tracecompass.git] / pom.xml
CommitLineData
89882f20
SG
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 <parent>
21 <groupId>org.eclipse.linuxtools</groupId>
22 <artifactId>linuxtools-parent</artifactId>
6dc52c22 23 <version>1.2.0-SNAPSHOT</version>
89882f20
SG
24 </parent>
25
26 <groupId>org.eclipse.linuxtools.lttng</groupId>
27 <artifactId>linuxtools-lttng-parent</artifactId>
6dc52c22 28 <version>1.2.0-SNAPSHOT</version>
89882f20
SG
29 <packaging>pom</packaging>
30
31 <name>Eclipse Linux Tools LTTng Parent</name>
32
33 <licenses>
34 <license>
35 <name>Eclipse Public License v1.0</name>
36 <comments>
37 All rights reserved.
38
39 This program and the accompanying materials are made
40 available under the terms of the Eclipse Public License v1.0
41 which accompanies this distribution, and is available at
42 http://www.eclipse.org/legal/epl-v10.htm
43 </comments>
44 </license>
45 </licenses>
a0d4730f 46
422f0fb8
BH
47<profiles>
48 <profile>
49 <id>jcoverage</id>
50 <properties>
51 <!-- Properties to enable jacoco code coverage analysis -->
52 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
53 <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
54 <sonar.jacoco.reportPath>../target/jacoco.exec</sonar.jacoco.reportPath>
55 </properties>
56
57 <build>
58 <plugins>
59 <!-- Enabling use of jacoco -->
60 <plugin>
61 <groupId>org.jacoco</groupId>
62 <artifactId>jacoco-maven-plugin</artifactId>
276c17e7 63 <version>0.5.6.201201232323</version>
422f0fb8
BH
64 <executions>
65 <execution>
66 <goals>
67 <goal>prepare-agent</goal>
68 </goals>
69 <configuration>
70 <!-- Where to put jacoco coverage report -->
71 <destFile>${sonar.jacoco.reportPath}</destFile>
72 </configuration>
73 </execution>
74 </executions>
75 </plugin>
76 </plugins>
77 </build>
78 </profile>
79
80 <profile>
81 <id>lttngTests</id>
82 <modules>
6c13869b 83 <module>org.eclipse.linuxtools.lttng.core.tests</module>
cc8b1348 84 <module>org.eclipse.linuxtools.lttng2.core.tests</module>
422f0fb8
BH
85 </modules>
86 </profile>
1b70b6dc
PT
87
88 <profile>
89 <id>lttngPackage</id>
1a3c64e3
BH
90 <properties>
91 <lttngPackageDestination>/var/www/technology/linuxtools/lttng/update-nightly/</lttngPackageDestination>
92 </properties>
1b70b6dc
PT
93 <modules>
94 <module>org.eclipse.linuxtools.lttng.releng-site</module>
95 </modules>
96 </profile>
97
422f0fb8
BH
98</profiles>
99
a0d4730f
AK
100 <build>
101 <plugins>
102 <plugin>
103 <artifactId>maven-assembly-plugin</artifactId>
104 <configuration>
105 <descriptors>
106 <descriptor>../src.xml</descriptor>
107 </descriptors>
108 </configuration>
109 </plugin>
422f0fb8
BH
110
111 <plugin>
112 <groupId>org.codehaus.mojo</groupId>
113 <artifactId>sonar-maven-plugin</artifactId>
c3fdd7bc 114 <version>2.0</version>
422f0fb8
BH
115 </plugin>
116
a0d4730f
AK
117 </plugins>
118 </build>
89882f20
SG
119
120 <modules>
866e5b51
FC
121 <module>org.eclipse.linuxtools.ctf</module>
122 <module>org.eclipse.linuxtools.ctf.core</module>
123 <!-- <module>org.eclipse.linuxtools.ctf.core.tests</module> -->
124 <module>org.eclipse.linuxtools.ctf.parser</module>
125
38960eca 126 <module>org.eclipse.linuxtools.tmf</module>
6c13869b
FC
127 <module>org.eclipse.linuxtools.tmf.core</module>
128 <module>org.eclipse.linuxtools.tmf.core.tests</module>
38960eca
FC
129 <module>org.eclipse.linuxtools.tmf.ui</module>
130 <module>org.eclipse.linuxtools.tmf.ui.tests</module>
d91f71fa 131
38960eca 132 <module>org.eclipse.linuxtools.lttng</module>
6c13869b 133 <module>org.eclipse.linuxtools.lttng.core</module>
cc8b1348 134 <!-- <module>org.eclipse.linuxtools.lttng.core.tests</module> activated by the lttngTests package -->
89882f20
SG
135 <module>org.eclipse.linuxtools.lttng.help</module>
136 <module>org.eclipse.linuxtools.lttng.jni</module>
89882f20
SG
137 <module>org.eclipse.linuxtools.lttng.ui</module>
138 <module>org.eclipse.linuxtools.lttng.ui.tests</module>
d91f71fa
FC
139
140 <module>org.eclipse.linuxtools.lttng2</module>
c9b530b0 141 <module>org.eclipse.linuxtools.lttng2.core</module>
cc8b1348 142 <!-- module>org.eclipse.linuxtools.lttng2.core.tests</module> activated by the lttngTests package -->
c9b530b0
FC
143 <module>org.eclipse.linuxtools.lttng2.ui</module>
144 <module>org.eclipse.linuxtools.lttng2.ui.tests</module>
145
146 <module>org.eclipse.linuxtools.lttng2.kernel</module>
147 <module>org.eclipse.linuxtools.lttng2.kernel.core</module>
148 <module>org.eclipse.linuxtools.lttng2.kernel.core.tests</module>
149 <module>org.eclipse.linuxtools.lttng2.kernel.ui</module>
150 <module>org.eclipse.linuxtools.lttng2.kernel.ui.tests</module>
89882f20
SG
151 </modules>
152
153</project>
This page took 0.035139 seconds and 5 git commands to generate.