Split the lttng-tools wrapper in a separate artifact
[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>
24b260d9 38 </properties>
24b260d9
AM
39
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
d4e2e87c 45 <version>3.3</version>
24b260d9
AM
46 <configuration>
47 <source>1.8</source>
48 <target>1.8</target>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
b01fe762
AM
53
54
55 <modules>
56 <module>lttng-ust-java-tests</module>
57 <module>lttng-tools-java</module>
58 </modules>
d4e2e87c 59
24b260d9 60</project>
This page took 0.02461 seconds and 4 git commands to generate.