Remove some unused imports
[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>
24b260d9 31 <version>1.0.0</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 90
fe6a3925
AM
91 <dependencies>
92 <dependency>
93 <groupId>com.google.guava</groupId>
94 <artifactId>guava</artifactId>
95 <version>19.0</version>
96 </dependency>
97 </dependencies>
98
4821eac9
AM
99 <dependencyManagement>
100 <dependencies>
101 <!-- System dependencies, should have been installed by UST -->
102 <dependency>
103 <groupId>org.lttng.ust.agent</groupId>
104 <artifactId>lttng-ust-agent-common</artifactId>
105 <version>1.0.0</version>
106 <scope>system</scope>
107 <systemPath>${common-jar-location}</systemPath>
108 </dependency>
109
110 <dependency>
111 <groupId>org.lttng.ust.agent</groupId>
112 <artifactId>lttng-ust-agent-jul</artifactId>
113 <version>1.0.0</version>
114 <scope>system</scope>
115 <systemPath>${jul-jar-location}</systemPath>
116 </dependency>
117
118 <dependency>
119 <groupId>org.lttng.ust.agent</groupId>
120 <artifactId>lttng-ust-agent-log4j</artifactId>
121 <version>1.0.0</version>
122 <scope>system</scope>
123 <systemPath>${log4j-jar-location}</systemPath>
124 </dependency>
125
126 <!-- Provided by this project -->
127 <dependency>
128 <groupId>org.lttng.tools</groupId>
129 <artifactId>lttng-tools-java</artifactId>
130 <version>1.0.0</version>
131 </dependency>
132
133 <dependency>
134 <groupId>org.lttng.ust</groupId>
135 <artifactId>lttng-ust-java-tests-common</artifactId>
136 <version>1.0.0</version>
137 </dependency>
138
139 <!-- Regular Maven dependencies -->
140 <dependency>
141 <groupId>log4j</groupId>
142 <artifactId>log4j</artifactId>
143 <version>1.2.17</version>
144 </dependency>
145
146 <dependency>
147 <groupId>junit</groupId>
148 <artifactId>junit</artifactId>
149 <version>RELEASE</version>
150 <scope>test</scope>
151 </dependency>
152 </dependencies>
153 </dependencyManagement>
154
155
b01fe762 156 <modules>
b01fe762 157 <module>lttng-tools-java</module>
4821eac9
AM
158 <module>lttng-ust-java-tests-common</module>
159 <module>lttng-ust-java-tests-jul</module>
160 <module>lttng-ust-java-tests-log4j</module>
b01fe762 161 </modules>
d4e2e87c 162
24b260d9 163</project>
This page took 0.028495 seconds and 4 git commands to generate.