e64a7b1b4937bfdc999cd767ca0d01f9f53b088d
[lttng-ust-java-tests.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; only
8 version 2.1 of the License.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 -->
19
20 <project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <prerequisites>
26 <maven>3.0</maven>
27 </prerequisites>
28
29 <groupId>org.lttng.ust</groupId>
30 <artifactId>lttng-ust-java-parent</artifactId>
31 <version>1.1.0-SNAPSHOT</version>
32 <packaging>pom</packaging>
33
34 <name>LTTng-UST Java Agent</name>
35
36 <properties>
37 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
39
40 <!-- Work around bug SUREFIRE-1831 in failsafe 3.0.0-M5 -->
41 <failsafe.useModulePath>false</failsafe.useModulePath>
42
43 <!-- Paths that come from UST's default "make install".
44 Override to specify other locations. -->
45 <common-jar-location>/usr/local/share/java/lttng-ust-agent-common-1.0.0.jar</common-jar-location>
46 <jul-jar-location>/usr/local/share/java/lttng-ust-agent-jul-1.0.0.jar</jul-jar-location>
47 <log4j-jar-location>/usr/local/share/java/lttng-ust-agent-log4j-1.0.0.jar</log4j-jar-location>
48 <log4j2-jar-location>/usr/local/share/java/lttng-ust-agent-log4j2-1.0.0.jar</log4j2-jar-location>
49 <argLine>-Djava.library.path=/usr/local/lib</argLine>
50 </properties>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 </plugin>
58
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-failsafe-plugin</artifactId>
62 </plugin>
63 </plugins>
64
65 <pluginManagement>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
70 <version>3.9.0</version>
71 <configuration>
72 <source>1.8</source>
73 <target>1.8</target>
74 </configuration>
75 </plugin>
76
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-failsafe-plugin</artifactId>
80 <version>3.0.0-M5</version>
81 <executions>
82 <execution>
83 <goals>
84 <goal>integration-test</goal>
85 <goal>verify</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </pluginManagement>
92
93 </build>
94
95 <dependencyManagement>
96 <dependencies>
97 <!-- Regular Maven dependencies -->
98 <dependency>
99 <groupId>log4j</groupId>
100 <artifactId>log4j</artifactId>
101 <version>1.2.17</version>
102 </dependency>
103
104 <dependency>
105 <groupId>org.apache.logging.log4j</groupId>
106 <artifactId>log4j-api</artifactId>
107 <version>2.17.1</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.apache.logging.log4j</groupId>
112 <artifactId>log4j-core</artifactId>
113 <version>2.17.1</version>
114 </dependency>
115
116 <dependency>
117 <groupId>junit</groupId>
118 <artifactId>junit</artifactId>
119 <version>4.13.2</version>
120 <scope>test</scope>
121 </dependency>
122
123 <!-- System dependencies, should have been installed by UST -->
124 <dependency>
125 <groupId>org.lttng.ust.agent</groupId>
126 <artifactId>lttng-ust-agent-common</artifactId>
127 <version>1.0.0</version>
128 <scope>system</scope>
129 <systemPath>${common-jar-location}</systemPath>
130 </dependency>
131
132 <dependency>
133 <groupId>org.lttng.ust.agent</groupId>
134 <artifactId>lttng-ust-agent-jul</artifactId>
135 <version>1.0.0</version>
136 <scope>system</scope>
137 <systemPath>${jul-jar-location}</systemPath>
138 </dependency>
139
140 <dependency>
141 <groupId>org.lttng.ust.agent</groupId>
142 <artifactId>lttng-ust-agent-log4j</artifactId>
143 <version>1.0.0</version>
144 <scope>system</scope>
145 <systemPath>${log4j-jar-location}</systemPath>
146 </dependency>
147
148 <dependency>
149 <groupId>org.lttng.ust.agent</groupId>
150 <artifactId>lttng-ust-agent-log4j2</artifactId>
151 <version>1.0.0</version>
152 <scope>system</scope>
153 <systemPath>${log4j2-jar-location}</systemPath>
154 </dependency>
155
156 <!-- Provided by this project -->
157 <dependency>
158 <groupId>org.lttng.tools</groupId>
159 <artifactId>lttng-tools-java</artifactId>
160 <version>1.1.0-SNAPSHOT</version>
161 </dependency>
162
163 <dependency>
164 <groupId>org.lttng.ust</groupId>
165 <artifactId>lttng-ust-java-tests-common</artifactId>
166 <version>1.1.0-SNAPSHOT</version>
167 <scope>test</scope>
168 </dependency>
169 </dependencies>
170 </dependencyManagement>
171
172
173 <modules>
174 <module>lttng-tools-java</module>
175 <module>lttng-ust-java-tests-common</module>
176 <module>lttng-ust-java-tests-jul</module>
177 <module>lttng-ust-java-tests-log4j</module>
178 <module>lttng-ust-java-tests-log4j2</module>
179 </modules>
180
181 </project>
This page took 0.033452 seconds and 3 git commands to generate.