Switched to the dependency-managment, offered by Spring-Boot
[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   <properties>
10     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11     <java.version>1.8</java.version>
12     <simple-mapper.version>1.0.0</simple-mapper.version>
13   </properties>
14
15
16   <dependencies>
17
18     <dependency>
19       <groupId>org.thymeleaf</groupId>
20       <artifactId>thymeleaf</artifactId>
21     </dependency>
22
23     <!-- Needed to parse JSON -->
24     <dependency>
25       <groupId>de.juplo.jackson</groupId>
26       <artifactId>simple-mapper</artifactId>
27       <version>${simple-mapper.version}</version>
28     </dependency>
29
30     <!-- Testing -->
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <scope>test</scope>
35     </dependency>
36     <dependency>
37       <groupId>ch.qos.logback</groupId>
38       <artifactId>logback-classic</artifactId>
39       <scope>test</scope>
40     </dependency>
41
42   </dependencies>
43
44   <dependencyManagement>
45      <dependencies>
46       <dependency>
47         <!-- Import dependency management from Spring Boot -->
48         <groupId>org.springframework.boot</groupId>
49         <artifactId>spring-boot-dependencies</artifactId>
50         <version>1.3.6.RELEASE</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54     </dependencies>
55   </dependencyManagement>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-compiler-plugin</artifactId>
62         <version>3.5.1</version>
63         <configuration>
64           <source>${java.version}</source>
65           <target>${java.version}</target>
66         </configuration>
67       </plugin>
68     </plugins>
69   </build>
70
71 </project>