WIP: proxy
[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     <httpclient.logging.level>ERROR</httpclient.logging.level>
32
33     <!-- used versions (not defined in spring-boot) -->
34     <httpclient-spring-boot-starter.version>1.0-SNAPSHOT</httpclient-spring-boot-starter.version>
35     <thymeproxy.version>1.0-SNAPSHOT</thymeproxy.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>thymeproxy</artifactId>
52       <version>${thymeproxy.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>de.juplo</groupId>
56       <artifactId>httpclient-spring-boot-starter</artifactId>
57       <version>${httpclient-spring-boot-starter.version}</version>
58     </dependency>
59
60     <!-- Httpclient -->
61     <dependency>
62       <groupId>org.apache.httpcomponents</groupId>
63       <artifactId>httpclient</artifactId>
64     </dependency>
65
66     <!-- Needed to parse HTML5 with Thymeleaf -->
67     <dependency>
68       <groupId>net.sourceforge.nekohtml</groupId>
69       <artifactId>nekohtml</artifactId>
70       <version>${nekohtml.version}</version>
71     </dependency>
72
73     <dependency>
74       <groupId>ch.qos.logback</groupId>
75       <artifactId>logback-classic</artifactId>
76       <scope>runtime</scope>
77     </dependency>
78
79   </dependencies>
80
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.springframework.boot</groupId>
85         <artifactId>spring-boot-maven-plugin</artifactId>
86         <!-- Needed, because otherwise, filtering of maven properties won't work -->
87         <configuration>
88           <addResources>false</addResources>
89         </configuration>
90         <dependencies>
91           <dependency>
92             <groupId>org.springframework</groupId>
93             <artifactId>springloaded</artifactId>
94             <version>1.2.4.RELEASE</version>
95           </dependency>
96         </dependencies>
97       </plugin>
98     </plugins>
99   </build>
100
101 </project>