WIP: early 404-detection
[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     <thymeproxy.version>1.0-SNAPSHOT</thymeproxy.version>
37
38   </properties>
39
40   <dependencies>
41
42     <dependency>
43       <groupId>org.springframework.boot</groupId>
44       <artifactId>spring-boot-starter-web</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework.boot</groupId>
48       <artifactId>spring-boot-starter-thymeleaf</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>de.juplo</groupId>
52       <artifactId>thymeproxy</artifactId>
53       <version>${thymeproxy.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>de.juplo</groupId>
57       <artifactId>httpclient-spring-boot-starter</artifactId>
58       <version>${httpclient-spring-boot-starter.version}</version>
59     </dependency>
60
61     <!-- Httpclient -->
62     <dependency>
63       <groupId>org.apache.httpcomponents</groupId>
64       <artifactId>httpclient</artifactId>
65     </dependency>
66
67     <!-- Needed to parse HTML5 with Thymeleaf -->
68     <dependency>
69       <groupId>net.sourceforge.nekohtml</groupId>
70       <artifactId>nekohtml</artifactId>
71       <version>${nekohtml.version}</version>
72     </dependency>
73
74     <!-- Needed to parse JSON -->
75     <dependency>
76       <groupId>com.fasterxml.jackson.core</groupId>
77       <artifactId>jackson-annotations</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>com.fasterxml.jackson.core</groupId>
81       <artifactId>jackson-core</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>com.fasterxml.jackson.core</groupId>
85       <artifactId>jackson-databind</artifactId>
86     </dependency>
87
88     <dependency>
89       <groupId>ch.qos.logback</groupId>
90       <artifactId>logback-classic</artifactId>
91       <scope>runtime</scope>
92     </dependency>
93
94   </dependencies>
95
96   <build>
97     <plugins>
98       <plugin>
99         <groupId>org.springframework.boot</groupId>
100         <artifactId>spring-boot-maven-plugin</artifactId>
101         <!-- Needed, because otherwise, filtering of maven properties won't work -->
102         <configuration>
103           <addResources>false</addResources>
104         </configuration>
105         <dependencies>
106           <dependency>
107             <groupId>org.springframework</groupId>
108             <artifactId>springloaded</artifactId>
109             <version>1.2.4.RELEASE</version>
110           </dependency>
111         </dependencies>
112       </plugin>
113     </plugins>
114   </build>
115
116 </project>