7529bde2b3e4b2919d27fe34f7d6756cd85d3770
[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   <parent>
6     <groupId>org.springframework.boot</groupId>
7     <artifactId>spring-boot-starter-parent</artifactId>
8     <version>1.3.5.RELEASE</version>
9   </parent>
10
11   <groupId>de.juplo</groupId>
12   <artifactId>thymeproxy-starter</artifactId>
13   <version>1.0-SNAPSHOT</version>
14
15   <properties>
16
17     <!-- settings for Spring-Boot -->
18     <java.version>1.8</java.version>
19
20     <!-- other usefull settings -->
21     <encoding>UTF-8</encoding>
22     <maven.compiler.source>1.8</maven.compiler.source>
23     <maven.compiler.target>1.8</maven.compiler.target>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25
26     <!-- application-settings -->
27     <thymeproxy.name>${project.name}</thymeproxy.name>
28     <thymeproxy.origin>http://localhost:8080</thymeproxy.origin>
29     <thymeproxy.port>8888</thymeproxy.port>
30     <thymeproxy.ttl>300000</thymeproxy.ttl><!-- 5 minutes -->
31     <thymeproxy.cacheable>true</thymeproxy.cacheable>
32     <httpclient.logging.level>ERROR</httpclient.logging.level>
33
34     <!-- used versions (not defined in spring-boot) -->
35     <httpclient-spring-boot-starter.version>1.0-SNAPSHOT</httpclient-spring-boot-starter.version>
36
37   </properties>
38
39   <dependencies>
40
41     <dependency>
42       <groupId>org.springframework.boot</groupId>
43       <artifactId>spring-boot-starter-web</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.springframework.boot</groupId>
47       <artifactId>spring-boot-starter-thymeleaf</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>de.juplo</groupId>
51       <artifactId>httpclient-spring-boot-starter</artifactId>
52       <version>${httpclient-spring-boot-starter.version}</version>
53     </dependency>
54
55     <!-- Httpclient -->
56     <dependency>
57       <groupId>org.apache.httpcomponents</groupId>
58       <artifactId>httpclient</artifactId>
59     </dependency>
60
61     <!-- Needed to parse HTML5 with Thymeleaf -->
62     <dependency>
63       <groupId>net.sourceforge.nekohtml</groupId>
64       <artifactId>nekohtml</artifactId>
65       <version>${nekohtml.version}</version>
66     </dependency>
67
68     <!-- Needed to parse JSON -->
69     <dependency>
70       <groupId>com.fasterxml.jackson.core</groupId>
71       <artifactId>jackson-annotations</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>com.fasterxml.jackson.core</groupId>
75       <artifactId>jackson-core</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>com.fasterxml.jackson.core</groupId>
79       <artifactId>jackson-databind</artifactId>
80     </dependency>
81
82     <dependency>
83       <groupId>ch.qos.logback</groupId>
84       <artifactId>logback-classic</artifactId>
85       <scope>runtime</scope>
86     </dependency>
87
88   </dependencies>
89
90   <build>
91     <plugins>
92       <plugin>
93         <groupId>org.springframework.boot</groupId>
94         <artifactId>spring-boot-maven-plugin</artifactId>
95         <!-- Needed, because otherwise, filtering of maven properties won't work -->
96         <configuration>
97           <addResources>false</addResources>
98         </configuration>
99         <dependencies>
100           <dependency>
101             <groupId>org.springframework</groupId>
102             <artifactId>springloaded</artifactId>
103             <version>1.2.4.RELEASE</version>
104           </dependency>
105         </dependencies>
106       </plugin>
107     </plugins>
108   </build>
109
110 </project>