d49a47a547f11f9270efa6a308f1a895bfe295f6
[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.halbekunst</groupId>
8   <artifactId>juplo</artifactId>
9   <version>1.0</version>
10   <name>Juplo</name>
11   <packaging>pom</packaging>
12   <url>http://www.halbekunst.de</url>
13
14   <prerequisites>
15     <maven>2.0.6</maven>
16   </prerequisites>
17
18   <developers>
19     <developer>
20       <id>kai</id>
21       <name>Kai Moritz</name>
22       <email>kai@ich-geh-kaputt.de</email>
23     </developer>
24   </developers>
25
26   <modules>
27     <module>cachecontrol</module>
28   </modules>
29
30   <properties>
31
32     <!-- Zeichensatz -->
33     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34
35     <!-- Verwendete Versionen -->
36     <junit.version>4.8.1</junit.version>
37     <log4j.version>1.2.15</log4j.version>
38     <servlet-api.version>2.5</servlet-api.version>
39     <slf4j.version>1.5.11</slf4j.version>
40     <springframework.version>3.0.5.RELEASE</springframework.version>
41
42   </properties>
43
44   <dependencies>
45
46     <!-- Logging -->
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50       <version>${slf4j.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>org.slf4j</groupId>
54       <artifactId>jcl-over-slf4j</artifactId>
55       <version>${slf4j.version}</version>
56       <scope>runtime</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-log4j12</artifactId>
61       <version>${slf4j.version}</version>
62       <exclusions>
63         <exclusion>
64           <groupId>log4j</groupId>
65           <artifactId>log4j</artifactId>
66         </exclusion>
67       </exclusions>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>log4j</groupId>
72       <artifactId>log4j</artifactId>
73       <version>${log4j.version}</version>
74       <exclusions>
75         <exclusion>
76           <groupId>javax.mail</groupId>
77           <artifactId>mail</artifactId>
78         </exclusion>
79         <exclusion>
80           <groupId>javax.jms</groupId>
81           <artifactId>jms</artifactId>
82         </exclusion>
83         <exclusion>
84           <groupId>com.sun.jdmk</groupId>
85           <artifactId>jmxtools</artifactId>
86         </exclusion>
87         <exclusion>
88           <groupId>com.sun.jmx</groupId>
89           <artifactId>jmxri</artifactId>
90         </exclusion>
91       </exclusions>
92       <scope>runtime</scope>
93     </dependency>
94
95     <!-- Test -->
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99       <version>${junit.version}</version>
100       <scope>test</scope>
101     </dependency>
102
103   </dependencies>
104
105   <repositories>
106     <!-- For JSR 303, Hibernate Validator and other Hibernate-Stuff - Encourage JBoss to publish these artifacts to Maven Central! -->
107     <repository>
108       <id>org.jboss.repository.maven</id>
109       <url>http://repository.jboss.org/maven2</url>
110       <snapshots><enabled>false</enabled></snapshots>
111     </repository>
112     <repository>
113       <id>halbekunst.internal</id>
114       <name>Internal Release Repository</name>
115       <url>http://halbekunst.de/archiva/repository/internal/</url>
116       <snapshots><enabled>false</enabled></snapshots>
117     </repository>
118   </repositories>
119
120   <distributionManagement>
121     <repository>
122       <id>halbekunst.internal</id>
123       <name>Internal Release Repository</name>
124       <url>http://halbekunst.de/archiva/repository/internal/</url>
125     </repository>
126     <snapshotRepository>
127       <id>halbekunst.snapshots</id>
128       <name>Internal Snapshot Repository</name>
129       <url>http://halbekunst.de/archiva/repository/snapshots/</url>
130     </snapshotRepository>
131   </distributionManagement>
132
133   <build>
134     <plugins>
135       <plugin>
136         <groupId>org.apache.maven.plugins</groupId>
137         <artifactId>maven-compiler-plugin</artifactId>
138         <configuration>
139           <source>1.6</source>
140           <target>1.6</target>
141           <encoding>utf8</encoding>
142           <showWarnings>true</showWarnings>
143         </configuration>
144       </plugin>
145       <plugin>
146         <groupId>org.apache.maven.plugins</groupId>
147         <artifactId>maven-dependency-plugin</artifactId>
148         <executions>
149           <execution>
150             <id>install</id>
151             <phase>install</phase>
152             <goals>
153               <goal>sources</goal>
154             </goals>
155           </execution>
156         </executions>
157       </plugin>
158     </plugins>
159   </build>
160
161   <reporting>
162     <plugins>
163       <plugin>
164         <artifactId>maven-changes-plugin</artifactId>
165       </plugin>
166       <plugin>
167         <artifactId>maven-checkstyle-plugin</artifactId>
168       </plugin>
169       <plugin>
170         <groupId>org.codehaus.mojo</groupId>
171         <artifactId>cobertura-maven-plugin</artifactId>
172         <version>2.0</version>
173       </plugin>
174       <plugin>
175         <artifactId>maven-javadoc-plugin</artifactId>
176       </plugin>
177       <plugin>
178         <artifactId>maven-jxr-plugin</artifactId>
179       </plugin>
180       <plugin>
181         <artifactId>maven-pmd-plugin</artifactId>
182         <configuration>
183           <linkXref>true</linkXref>
184           <targetJdk>1.5</targetJdk>
185         </configuration>
186       </plugin>
187       <plugin>
188         <artifactId>maven-surefire-report-plugin</artifactId>
189       </plugin>
190     </plugins>
191   </reporting>
192
193 </project>