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