README.md formatting
[lttng-ust-java-tests.git] / pom.xml
CommitLineData
24b260d9
AM
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
4
b01fe762
AM
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
24b260d9
AM
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
d4e2e87c
AM
25 <prerequisites>
26 <maven>3.0</maven>
27 </prerequisites>
28
b01fe762
AM
29 <groupId>org.lttng.ust</groupId>
30 <artifactId>lttng-ust-java-parent</artifactId>
e225d30f 31 <version>1.1.0-SNAPSHOT</version>
b01fe762 32 <packaging>pom</packaging>
24b260d9 33
b01fe762 34 <name>LTTng-UST Java Agent</name>
24b260d9
AM
35
36 <properties>
37 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7b82be36 38 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4821eac9
AM
39
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>
24b260d9 46 </properties>
24b260d9
AM
47
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-compiler-plugin</artifactId>
24b260d9 53 </plugin>
4821eac9
AM
54
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-failsafe-plugin</artifactId>
4821eac9 58 </plugin>
24b260d9 59 </plugins>
7bf69f79
AM
60
61 <pluginManagement>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-compiler-plugin</artifactId>
66 <version>3.6.1</version>
67 <configuration>
68 <source>1.8</source>
69 <target>1.8</target>
70 </configuration>
71 </plugin>
72
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-failsafe-plugin</artifactId>
76 <version>2.19.1</version>
77 <executions>
78 <execution>
79 <goals>
80 <goal>integration-test</goal>
81 <goal>verify</goal>
82 </goals>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </pluginManagement>
88
24b260d9 89 </build>
4821eac9
AM
90
91 <dependencyManagement>
92 <dependencies>
d11bb38f
AM
93 <!-- Regular Maven dependencies -->
94 <dependency>
95 <groupId>log4j</groupId>
96 <artifactId>log4j</artifactId>
97 <version>1.2.17</version>
98 </dependency>
99
100 <dependency>
101 <groupId>junit</groupId>
102 <artifactId>junit</artifactId>
103 <version>RELEASE</version>
104 <scope>test</scope>
105 </dependency>
106
4821eac9
AM
107 <!-- System dependencies, should have been installed by UST -->
108 <dependency>
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>
114 </dependency>
115
116 <dependency>
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>
122 </dependency>
123
124 <dependency>
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>
130 </dependency>
131
132 <!-- Provided by this project -->
133 <dependency>
134 <groupId>org.lttng.tools</groupId>
135 <artifactId>lttng-tools-java</artifactId>
e225d30f 136 <version>1.1.0-SNAPSHOT</version>
4821eac9
AM
137 </dependency>
138
139 <dependency>
140 <groupId>org.lttng.ust</groupId>
141 <artifactId>lttng-ust-java-tests-common</artifactId>
e225d30f 142 <version>1.1.0-SNAPSHOT</version>
4821eac9
AM
143 <scope>test</scope>
144 </dependency>
145 </dependencies>
146 </dependencyManagement>
147
148
b01fe762 149 <modules>
b01fe762 150 <module>lttng-tools-java</module>
4821eac9
AM
151 <module>lttng-ust-java-tests-common</module>
152 <module>lttng-ust-java-tests-jul</module>
153 <module>lttng-ust-java-tests-log4j</module>
b01fe762 154 </modules>
d4e2e87c 155
24b260d9 156</project>
This page took 0.028583 seconds and 4 git commands to generate.