a0d7e56dcddf8fb4af5b330c88c03918bac5b1a9
[percentcodec] / percentcodec / 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   <groupId>de.juplo</groupId>
8   <artifactId>juplo-percentcodec</artifactId>
9   <name>Juplo - Percent-Codec</name>
10   <version>1.0.1</version>
11   <url>http://www.juplo.de/percentcodec</url>
12
13   <prerequisites>
14     <maven>2.0.6</maven>
15   </prerequisites>
16
17   <developers>
18     <developer>
19       <id>kai</id>
20       <name>Kai Moritz</name>
21       <email>kai@juplo.de</email>
22     </developer>
23   </developers>
24
25   <properties>
26     <!-- Zeichensatz -->
27     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28     <!-- Verwendete Versionen -->
29     <junit.version>4.8.1</junit.version>
30     <log4j.version>1.2.16</log4j.version>
31     <slf4j.version>1.6.1</slf4j.version>
32   </properties>
33
34   <dependencies>
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <version>${junit.version}</version>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-log4j12</artifactId>
44       <version>${slf4j.version}</version>
45       <exclusions>
46         <exclusion>
47           <groupId>log4j</groupId>
48           <artifactId>log4j</artifactId>
49         </exclusion>
50       </exclusions>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>log4j</groupId>
55       <artifactId>log4j</artifactId>
56       <version>${log4j.version}</version>
57       <exclusions>
58         <exclusion>
59           <groupId>javax.mail</groupId>
60           <artifactId>mail</artifactId>
61         </exclusion>
62         <exclusion>
63           <groupId>javax.jms</groupId>
64           <artifactId>jms</artifactId>
65         </exclusion>
66         <exclusion>
67           <groupId>com.sun.jdmk</groupId>
68           <artifactId>jmxtools</artifactId>
69         </exclusion>
70         <exclusion>
71           <groupId>com.sun.jmx</groupId>
72           <artifactId>jmxri</artifactId>
73         </exclusion>
74       </exclusions>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78
79   <distributionManagement>
80     <repository>
81       <id>juplo.internal</id>
82       <name>Internal Release Repository</name>
83       <url>http://juplo.de/archiva/repository/internal/</url>
84     </repository>
85     <snapshotRepository>
86       <id>juplo.snapshots</id>
87       <name>Internal Snapshot Repository</name>
88       <url>http://juplo.de/archiva/repository/snapshots/</url>
89     </snapshotRepository>
90   </distributionManagement>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-compiler-plugin</artifactId>
97         <configuration>
98           <source>1.6</source>
99           <target>1.6</target>
100           <encoding>utf8</encoding>
101           <showWarnings>true</showWarnings>
102         </configuration>
103       </plugin>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-dependency-plugin</artifactId>
107         <executions>
108           <execution>
109             <id>install</id>
110             <phase>install</phase>
111             <goals>
112               <goal>sources</goal>
113             </goals>
114           </execution>
115         </executions>
116       </plugin>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-source-plugin</artifactId>
120         <executions>
121           <execution>
122             <id>attach-sources</id>
123             <phase>verify</phase>
124             <goals>
125               <goal>jar</goal>
126             </goals>
127           </execution>
128         </executions>
129       </plugin>
130     </plugins>
131   </build>
132
133   <reporting>
134     <plugins>
135       <plugin>
136         <artifactId>maven-changes-plugin</artifactId>
137       </plugin>
138       <plugin>
139         <artifactId>maven-checkstyle-plugin</artifactId>
140       </plugin>
141       <plugin>
142         <groupId>org.codehaus.mojo</groupId>
143         <artifactId>cobertura-maven-plugin</artifactId>
144         <version>2.0</version>
145       </plugin>
146       <plugin>
147         <artifactId>maven-javadoc-plugin</artifactId>
148       </plugin>
149       <plugin>
150         <artifactId>maven-jxr-plugin</artifactId>
151       </plugin>
152       <plugin>
153         <artifactId>maven-pmd-plugin</artifactId>
154         <configuration>
155           <linkXref>true</linkXref>
156           <targetJdk>1.5</targetJdk>
157         </configuration>
158       </plugin>
159       <plugin>
160         <artifactId>maven-surefire-report-plugin</artifactId>
161         <version>2.7.2</version>
162       </plugin>
163     </plugins>
164   </reporting>
165
166 </project>