WIP: thymeproxy
[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     <dependency>
69       <groupId>ch.qos.logback</groupId>
70       <artifactId>logback-classic</artifactId>
71       <scope>runtime</scope>
72     </dependency>
73
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.springframework.boot</groupId>
80         <artifactId>spring-boot-maven-plugin</artifactId>
81         <!-- Needed, because otherwise, filtering of maven properties won't work -->
82         <configuration>
83           <addResources>false</addResources>
84         </configuration>
85         <dependencies>
86           <dependency>
87             <groupId>org.springframework</groupId>
88             <artifactId>springloaded</artifactId>
89             <version>1.2.4.RELEASE</version>
90           </dependency>
91         </dependencies>
92       </plugin>
93     </plugins>
94   </build>
95
96 </project>