Initial implementation of SimpleMapper
[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-mapper</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>junit</groupId>
45       <artifactId>junit</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>ch.qos.logback</groupId>
50       <artifactId>logback-classic</artifactId>
51       <scope>test</scope>
52     </dependency>
53
54   </dependencies>
55
56   <dependencyManagement>
57      <dependencies>
58       <dependency>
59         <!-- Import dependency management from Spring Boot -->
60         <groupId>org.springframework.boot</groupId>
61         <artifactId>spring-boot-dependencies</artifactId>
62         <version>1.3.5.RELEASE</version>
63         <type>pom</type>
64         <scope>import</scope>
65       </dependency>
66     </dependencies>
67   </dependencyManagement>
68
69 </project>