TMP
[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.0</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>2.0.4.RELEASE</version>
82         <type>pom</type>
83         <scope>import</scope>
84       </dependency>
85     </dependencies>
86   </dependencyManagement>
87
88   <distributionManagement>
89     <repository>
90       <id>juplo</id>
91       <name>Repository for internal artifacts on juplo.de</name>
92       <url>scpexe://juplo.de/var/www/juplo.de/maven2</url>
93     </repository>
94     <snapshotRepository>
95     </snapshotRepository>
96   </distributionManagement>
97
98   <build>
99     <plugins>
100       <plugin>
101         <groupId>org.apache.maven.plugins</groupId>
102         <artifactId>maven-compiler-plugin</artifactId>
103         <version>3.5.1</version>
104         <configuration>
105           <source>${java.version}</source>
106           <target>${java.version}</target>
107         </configuration>
108       </plugin>
109       <plugin>
110         <groupId>org.apache.maven.plugins</groupId>
111         <artifactId>maven-source-plugin</artifactId>
112         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
113         <executions>
114           <execution>
115             <id>attach-sources</id>
116             <phase>verify</phase>
117             <goals>
118               <goal>jar</goal>
119             </goals>
120           </execution>
121         </executions>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-resources-plugin</artifactId>
126         <version>2.7</version>
127         <dependencies>
128           <dependency>
129             <groupId>org.apache.maven.shared</groupId>
130             <artifactId>maven-filtering</artifactId>
131             <version>1.3</version>
132           </dependency>
133         </dependencies>
134         <executions>
135           <execution>
136             <id>copy-resources</id>
137             <phase>pre-site</phase>
138             <goals>
139               <goal>copy-resources</goal>
140             </goals>
141             <configuration>
142               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
143               <resources>
144                 <resource>
145                   <directory>src/site</directory>
146                   <filtering>true</filtering>
147                 </resource>
148               </resources>
149             </configuration>
150           </execution>
151         </executions>
152       </plugin>
153     </plugins>
154     <pluginManagement>
155       <plugins>
156         <plugin>
157           <artifactId>maven-site-plugin</artifactId>
158           <version>3.5.1</version>
159           <configuration>
160             <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
161           </configuration>
162         </plugin>
163       </plugins>
164     </pluginManagement>
165     <extensions>
166       <!-- Enabling the use of SSH -->
167       <extension>
168         <groupId>org.apache.maven.wagon</groupId>
169          <artifactId>wagon-ssh-external</artifactId>
170          <version>2.10</version>
171       </extension>
172     </extensions>
173   </build>
174
175   <reporting>
176     <plugins>
177       <plugin>
178         <groupId>org.apache.maven.plugins</groupId>
179         <artifactId>maven-changes-plugin</artifactId>
180         <version>2.11</version>
181       </plugin>
182       <plugin>
183         <groupId>org.apache.maven.plugins</groupId>
184         <artifactId>maven-javadoc-plugin</artifactId>
185         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
186         <configuration>
187           <additionalparam>-Xdoclint:none</additionalparam>
188         </configuration>
189       </plugin>
190       <plugin>
191         <groupId>org.apache.maven.plugins</groupId>
192         <artifactId>maven-jxr-plugin</artifactId>
193         <version>2.5</version>
194       </plugin>
195       <plugin>
196         <groupId>org.apache.maven.plugins</groupId>
197         <artifactId>maven-pmd-plugin</artifactId>
198         <version>3.4</version>
199         <configuration>
200           <linkXref>true</linkXref>
201           <targetJdk>1.5</targetJdk>
202         </configuration>
203       </plugin>
204       <plugin>
205         <groupId>org.apache.maven.plugins</groupId>
206         <artifactId>maven-project-info-reports-plugin</artifactId>
207         <version>2.9</version>
208         <configuration>
209           <linkOnly>true</linkOnly>
210         </configuration>
211       </plugin>
212     </plugins>
213   </reporting>
214
215 </project>