Add a README and a LICENSE
[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 program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program 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
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 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 <groupId>org.lttng.ust.agent</groupId>
26 <artifactId>lttng-ust-agent-tests</artifactId>
27 <version>1.0.0</version>
28 <packaging>jar</packaging>
29
30 <name>LTTng-UST Java Agent Test Suite</name>
31
32 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 <!-- Paths that come from UST's default "make install".
35 Override to specify other locations. -->
36 <common-jar-location>/usr/local/share/java/lttng-ust-agent-common-1.0.0.jar</common-jar-location>
37 <jul-jar-location>/usr/local/share/java/lttng-ust-agent-jul-1.0.0.jar</jul-jar-location>
38 <log4j-jar-location>/usr/local/share/java/lttng-ust-agent-log4j-1.0.0.jar</log4j-jar-location>
39 <argLine>-Djava.library.path=/usr/local/lib</argLine>
40 </properties>
41
42 <dependencies>
43 <!-- System dependencies, should have been installed by UST -->
44 <dependency>
45 <groupId>org.lttng.ust.agent</groupId>
46 <artifactId>lttng-ust-agent-common</artifactId>
47 <version>1.0.0</version>
48 <scope>system</scope>
49 <systemPath>${common-jar-location}</systemPath>
50 </dependency>
51 <dependency>
52 <groupId>org.lttng.ust.agent</groupId>
53 <artifactId>lttng-ust-agent-jul</artifactId>
54 <version>1.0.0</version>
55 <scope>system</scope>
56 <systemPath>${jul-jar-location}</systemPath>
57 </dependency>
58 <dependency>
59 <groupId>org.lttng.ust.agent</groupId>
60 <artifactId>lttng-ust-agent-log4j</artifactId>
61 <version>1.0.0</version>
62 <scope>system</scope>
63 <systemPath>${log4j-jar-location}</systemPath>
64 </dependency>
65
66 <!-- "Real" Maven dependencies -->
67 <dependency>
68 <groupId>log4j</groupId>
69 <artifactId>log4j</artifactId>
70 <version>1.2.17</version>
71 </dependency>
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 <version>4.12</version>
76 <scope>test</scope>
77 </dependency>
78 </dependencies>
79
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-compiler-plugin</artifactId>
85 <version>3.1</version>
86 <configuration>
87 <source>1.8</source>
88 <target>1.8</target>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93
94 </project>
This page took 0.030647 seconds and 4 git commands to generate.