Migrate to Junit 5 Jupiter
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / 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 <parent>
26 <groupId>org.lttng.ust</groupId>
27 <artifactId>lttng-ust-java-parent</artifactId>
28 <version>1.1.0-SNAPSHOT</version>
29 </parent>
30
31 <artifactId>lttng-ust-java-tests-jul</artifactId>
32 <packaging>jar</packaging>
33
34 <name>LTTng-UST Java Agent JUL API Integration Tests</name>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.lttng.ust.agent</groupId>
39 <artifactId>lttng-ust-agent-common</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.lttng.ust.agent</groupId>
43 <artifactId>lttng-ust-agent-jul</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.lttng.tools</groupId>
47 <artifactId>lttng-tools-java</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.lttng.ust</groupId>
51 <artifactId>lttng-ust-java-tests-common</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.junit.jupiter</groupId>
55 <artifactId>junit-jupiter</artifactId>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59
60 <profiles>
61 <!-- Profile to run the benchmarks, which are specific to JUL -->
62 <profile>
63 <id>benchmark</id>
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-failsafe-plugin</artifactId>
69 <configuration>
70 <includes>
71 <include>**/*Benchmark.java</include>
72 </includes>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77 </profile>
78 </profiles>
79
80 </project>
This page took 0.031578 seconds and 4 git commands to generate.