WIP
[maven-thymeleaf-skin] / 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.jackson</groupId>
6   <artifactId>simple-mapping</artifactId>
7   <version>1.0-SNAPSHOT</version>
8
9   <properties>
10
11     <!-- settings for Spring-Boot -->
12     <java.version>1.8</java.version>
13
14     <!-- other usefull settings -->
15     <encoding>UTF-8</encoding>
16     <maven.compiler.source>1.8</maven.compiler.source>
17     <maven.compiler.target>1.8</maven.compiler.target>
18     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19
20   </properties>
21
22   <dependencies>
23
24     <dependency>
25       <groupId>com.fasterxml.jackson.core</groupId>
26       <artifactId>jackson-annotations</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.fasterxml.jackson.core</groupId>
30       <artifactId>jackson-core</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.fasterxml.jackson.core</groupId>
34       <artifactId>jackson-databind</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.slf4j</groupId>
38       <artifactId>slf4j-api</artifactId>
39     </dependency>
40
41
42     <!-- Testing -->
43     <dependency>
44       <groupId>ch.qos.logback</groupId>
45       <artifactId>logback-classic</artifactId>
46       <scope>test</scope>
47     </dependency>
48
49   </dependencies>
50
51   <dependencyManagement>
52      <dependencies>
53       <dependency>
54         <!-- Import dependency management from Spring Boot -->
55         <groupId>org.springframework.boot</groupId>
56         <artifactId>spring-boot-dependencies</artifactId>
57         <version>1.3.5.RELEASE</version>
58         <type>pom</type>
59         <scope>import</scope>
60       </dependency>
61     </dependencies>
62   </dependencyManagement>
63
64 </project>