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