1 <?xml version=
"1.0" encoding=
"UTF-8"?>
3 Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
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.
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.
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
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>
29 <groupId>org.lttng.ust
</groupId>
30 <artifactId>lttng-ust-java-parent
</artifactId>
31 <version>1.1.0-SNAPSHOT
</version>
32 <packaging>pom
</packaging>
34 <name>LTTng-UST Java Agent
</name>
37 <project.build.sourceEncoding
>UTF-
8</project.build.sourceEncoding
>
38 <project.reporting.outputEncoding
>UTF-
8</project.reporting.outputEncoding
>
40 <!-- Paths that come from UST's default "make install".
41 Override to specify other locations. -->
42 <common-jar-location>/usr/local/share/java/lttng-ust-agent-common-
1.0.0.jar
</common-jar-location>
43 <jul-jar-location>/usr/local/share/java/lttng-ust-agent-jul-
1.0.0.jar
</jul-jar-location>
44 <log4j-jar-location>/usr/local/share/java/lttng-ust-agent-log4j-
1.0.0.jar
</log4j-jar-location>
45 <argLine>-Djava.library.path=/usr/local/lib
</argLine>
51 <groupId>org.apache.maven.plugins
</groupId>
52 <artifactId>maven-compiler-plugin
</artifactId>
56 <groupId>org.apache.maven.plugins
</groupId>
57 <artifactId>maven-failsafe-plugin
</artifactId>
64 <groupId>org.apache.maven.plugins
</groupId>
65 <artifactId>maven-compiler-plugin
</artifactId>
66 <version>3.6.1</version>
74 <groupId>org.apache.maven.plugins
</groupId>
75 <artifactId>maven-failsafe-plugin
</artifactId>
76 <version>2.19.1</version>
80 <goal>integration-test
</goal>
91 <dependencyManagement>
93 <!-- Regular Maven dependencies -->
95 <groupId>log4j
</groupId>
96 <artifactId>log4j
</artifactId>
97 <version>1.2.17</version>
101 <groupId>junit
</groupId>
102 <artifactId>junit
</artifactId>
103 <version>4.13.2</version>
107 <!-- System dependencies, should have been installed by UST -->
109 <groupId>org.lttng.ust.agent
</groupId>
110 <artifactId>lttng-ust-agent-common
</artifactId>
111 <version>1.0.0</version>
112 <scope>system
</scope>
113 <systemPath>${common-jar-location}
</systemPath>
117 <groupId>org.lttng.ust.agent
</groupId>
118 <artifactId>lttng-ust-agent-jul
</artifactId>
119 <version>1.0.0</version>
120 <scope>system
</scope>
121 <systemPath>${jul-jar-location}
</systemPath>
125 <groupId>org.lttng.ust.agent
</groupId>
126 <artifactId>lttng-ust-agent-log4j
</artifactId>
127 <version>1.0.0</version>
128 <scope>system
</scope>
129 <systemPath>${log4j-jar-location}
</systemPath>
132 <!-- Provided by this project -->
134 <groupId>org.lttng.tools
</groupId>
135 <artifactId>lttng-tools-java
</artifactId>
136 <version>1.1.0-SNAPSHOT
</version>
140 <groupId>org.lttng.ust
</groupId>
141 <artifactId>lttng-ust-java-tests-common
</artifactId>
142 <version>1.1.0-SNAPSHOT
</version>
146 </dependencyManagement>
150 <module>lttng-tools-java
</module>
151 <module>lttng-ust-java-tests-common
</module>
152 <module>lttng-ust-java-tests-jul
</module>
153 <module>lttng-ust-java-tests-log4j
</module>