25050cc09f0cc9e7e26d92fb36922365444fbb2a
[juplo-dialect] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2
3   <modelVersion>4.0.0</modelVersion>
4
5   <groupId>de.juplo.thymeleaf</groupId>
6   <artifactId>juplo-dialect</artifactId>
7   <version>1.0-SNAPSHOT</version>
8
9   <name>Juplo Thymeleaf-Dialect</name>
10   <description>A thymeleaf-dialect, that collects some usefull utils, missing in the thymeleaf-distribution</description>
11   <url>http://juplo.de/juplo-dialect/index.html</url>
12
13   <scm>
14     <connection>scm:git:http://juplo.de/git/juplo-dialect</connection>
15     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/juplo-dialect</developerConnection>
16     <url>http://juplo.de/gitweb/?p=juplo-dialect;a=summary</url>
17   </scm>
18
19   <developers>
20     <developer>
21       <id>kai</id>
22       <name>Kai Moritz</name>
23       <email>kai@juplo.de</email>
24     </developer>
25   </developers>
26
27   <organization>
28     <name>juplo</name>
29     <url>http://juplo.de</url>
30   </organization>
31
32   <licenses>
33     <license>
34       <name>GNU Lesser General Public License, Version 3.0</name>
35       <url>http://www.gnu.org/licenses/lgpl-3.0.en.html</url>
36       <distribution>repo</distribution>
37     </license>
38   </licenses>
39
40   <properties>
41     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42     <java.version>1.8</java.version>
43     <simple-mapper.version>1.0.0</simple-mapper.version>
44   </properties>
45
46
47   <dependencies>
48
49     <dependency>
50       <groupId>org.thymeleaf</groupId>
51       <artifactId>thymeleaf</artifactId>
52     </dependency>
53
54     <!-- Needed to parse JSON -->
55     <dependency>
56       <groupId>de.juplo.jackson</groupId>
57       <artifactId>simple-mapper</artifactId>
58       <version>${simple-mapper.version}</version>
59     </dependency>
60
61     <!-- Testing -->
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>ch.qos.logback</groupId>
69       <artifactId>logback-classic</artifactId>
70       <scope>test</scope>
71     </dependency>
72
73   </dependencies>
74
75   <dependencyManagement>
76      <dependencies>
77       <dependency>
78         <!-- Import dependency management from Spring Boot -->
79         <groupId>org.springframework.boot</groupId>
80         <artifactId>spring-boot-dependencies</artifactId>
81         <version>1.3.6.RELEASE</version>
82         <type>pom</type>
83         <scope>import</scope>
84       </dependency>
85     </dependencies>
86   </dependencyManagement>
87
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-compiler-plugin</artifactId>
93         <version>3.5.1</version>
94         <configuration>
95           <source>${java.version}</source>
96           <target>${java.version}</target>
97         </configuration>
98       </plugin>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-source-plugin</artifactId>
102         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
103         <executions>
104           <execution>
105             <id>attach-sources</id>
106             <phase>verify</phase>
107             <goals>
108               <goal>jar</goal>
109             </goals>
110           </execution>
111         </executions>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-resources-plugin</artifactId>
116         <version>2.7</version>
117         <dependencies>
118           <dependency>
119             <groupId>org.apache.maven.shared</groupId>
120             <artifactId>maven-filtering</artifactId>
121             <version>1.3</version>
122           </dependency>
123         </dependencies>
124         <executions>
125           <execution>
126             <id>copy-resources</id>
127             <phase>pre-site</phase>
128             <goals>
129               <goal>copy-resources</goal>
130             </goals>
131             <configuration>
132               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
133               <resources>
134                 <resource>
135                   <directory>src/site</directory>
136                   <filtering>true</filtering>
137                 </resource>
138               </resources>
139             </configuration>
140           </execution>
141         </executions>
142       </plugin>
143     </plugins>
144     <pluginManagement>
145       <plugins>
146         <plugin>
147           <artifactId>maven-site-plugin</artifactId>
148           <version>3.5.1</version>
149           <configuration>
150             <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
151           </configuration>
152         </plugin>
153       </plugins>
154     </pluginManagement>
155   </build>
156
157   <reporting>
158     <plugins>
159       <plugin>
160         <groupId>org.apache.maven.plugins</groupId>
161         <artifactId>maven-changes-plugin</artifactId>
162         <version>2.11</version>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-javadoc-plugin</artifactId>
167         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
168         <configuration>
169           <additionalparam>-Xdoclint:none</additionalparam>
170         </configuration>
171       </plugin>
172       <plugin>
173         <groupId>org.apache.maven.plugins</groupId>
174         <artifactId>maven-jxr-plugin</artifactId>
175         <version>2.5</version>
176       </plugin>
177       <plugin>
178         <groupId>org.apache.maven.plugins</groupId>
179         <artifactId>maven-pmd-plugin</artifactId>
180         <version>3.4</version>
181         <configuration>
182           <linkXref>true</linkXref>
183           <targetJdk>1.5</targetJdk>
184         </configuration>
185       </plugin>
186       <plugin>
187         <groupId>org.apache.maven.plugins</groupId>
188         <artifactId>maven-project-info-reports-plugin</artifactId>
189         <version>2.9</version>
190         <configuration>
191           <linkOnly>true</linkOnly>
192         </configuration>
193       </plugin>
194     </plugins>
195   </reporting>
196
197 </project>