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