Version auf 1.0.1 festgetreten
[percentcodec] / utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>de.halbekunst</groupId>
9     <artifactId>juplo</artifactId>
10     <version>1.0.1</version>
11   </parent>
12
13   <artifactId>${pom.parent.artifactId}-utils</artifactId>
14   <name>Juplo - Utils</name>
15
16   <dependencies>
17     <dependency>
18       <groupId>junit</groupId>
19       <artifactId>junit</artifactId>
20       <version>${junit.version}</version>
21       <scope>test</scope>
22     </dependency>
23     <dependency>
24       <groupId>org.slf4j</groupId>
25       <artifactId>slf4j-log4j12</artifactId>
26       <version>${slf4j.version}</version>
27       <exclusions>
28         <exclusion>
29           <groupId>log4j</groupId>
30           <artifactId>log4j</artifactId>
31         </exclusion>
32       </exclusions>
33       <scope>test</scope>
34     </dependency>
35     <dependency>
36       <groupId>log4j</groupId>
37       <artifactId>log4j</artifactId>
38       <version>${log4j.version}</version>
39       <exclusions>
40         <exclusion>
41           <groupId>javax.mail</groupId>
42           <artifactId>mail</artifactId>
43         </exclusion>
44         <exclusion>
45           <groupId>javax.jms</groupId>
46           <artifactId>jms</artifactId>
47         </exclusion>
48         <exclusion>
49           <groupId>com.sun.jdmk</groupId>
50           <artifactId>jmxtools</artifactId>
51         </exclusion>
52         <exclusion>
53           <groupId>com.sun.jmx</groupId>
54           <artifactId>jmxri</artifactId>
55         </exclusion>
56       </exclusions>
57       <scope>test</scope>
58     </dependency>
59   </dependencies>
60
61 </project>