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