1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <groupId >org.dd4t</groupId >
7+ <artifactId >dd4t-parent</artifactId >
8+ <version >2.0.7-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <name >${project.groupId} :${project.artifactId} </name >
13+ <description >Provides support for Thymeleaf views.</description >
14+ <url >https://github.com/dd4t</url >
15+
16+ <licenses >
17+ <license >
18+ <name >The Apache License, Version 2.0</name >
19+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
20+ </license >
21+ </licenses >
22+
23+ <developers >
24+ <developer >
25+ <name >Quirijn Slings</name >
26+ <email >quirijn.slings@trivident.com</email >
27+ <organization >DD4T</organization >
28+ <organizationUrl >https://github.com/dd4t</organizationUrl >
29+ </developer >
30+ <developer >
31+ <name >Raimond Kempees</name >
32+ <email >kempees@radagio.com</email >
33+ <organization >DD4T</organization >
34+ <organizationUrl >https://github.com/dd4t</organizationUrl >
35+ </developer >
36+ </developers >
37+
38+ <scm >
39+ <connection >scm:git:git@github.com:/dd4t/dd4t-2-java.git</connection >
40+ <developerConnection >scm:git:git@github.com:/dd4t/dd4t-2-java.git</developerConnection >
41+ <url >git@github.com:/dd4t/dd4t-2-java.git</url >
42+ </scm >
43+
44+ <packaging >jar</packaging >
45+ <properties >
46+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
47+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
48+ </properties >
49+ <build >
50+ <resources >
51+ <resource >
52+ <directory >src/main/resources</directory >
53+ <targetPath >META-INF/tld</targetPath >
54+ <filtering >true</filtering >
55+ <includes >
56+ <include >**/**</include >
57+ </includes >
58+ </resource >
59+ </resources >
60+ </build >
61+ <artifactId >dd4t-thymeleaf-support</artifactId >
62+
63+ <dependencyManagement >
64+ <dependencies >
65+ <dependency >
66+ <groupId >org.dd4t</groupId >
67+ <artifactId >dd4t-bom</artifactId >
68+ <version >${project.version} </version >
69+ <type >pom</type >
70+ <scope >import</scope >
71+ </dependency >
72+ </dependencies >
73+ </dependencyManagement >
74+
75+ <dependencies >
76+ <dependency >
77+ <groupId >org.dd4t</groupId >
78+ <artifactId >dd4t-api</artifactId >
79+ <version >${project.version} </version >
80+ </dependency >
81+ <dependency >
82+ <groupId >org.dd4t</groupId >
83+ <artifactId >dd4t-core</artifactId >
84+ <version >${project.version} </version >
85+ </dependency >
86+ <dependency >
87+ <groupId >org.dd4t</groupId >
88+ <artifactId >dd4t-databind</artifactId >
89+ <version >${project.version} </version >
90+ </dependency >
91+ <dependency >
92+ <groupId >org.dd4t</groupId >
93+ <artifactId >dd4t-mvc-support</artifactId >
94+ <version >${project.version} </version >
95+ </dependency >
96+ <dependency >
97+ <groupId >org.thymeleaf</groupId >
98+ <artifactId >thymeleaf-spring4</artifactId >
99+ <version >3.0.2.RELEASE</version >
100+ </dependency >
101+ <dependency >
102+ <groupId >org.slf4j</groupId >
103+ <artifactId >slf4j-api</artifactId >
104+ <scope >provided</scope >
105+ </dependency >
106+ <!--
107+ <dependency>
108+ <groupId>commons-io</groupId>
109+ <artifactId>commons-io</artifactId>
110+ <scope>provided</scope>
111+ </dependency>
112+ <dependency>
113+ <groupId>org.springframework</groupId>
114+ <artifactId>spring-beans</artifactId>
115+ <scope>provided</scope>
116+ </dependency>
117+ <dependency>
118+ <groupId>org.springframework</groupId>
119+ <artifactId>spring-context-support</artifactId>
120+ <scope>provided</scope>
121+ </dependency>
122+ <dependency>
123+ <groupId>org.springframework</groupId>
124+ <artifactId>spring-jms</artifactId>
125+ <scope>provided</scope>
126+ </dependency>
127+ <dependency>
128+ <groupId>org.springframework</groupId>
129+ <artifactId>spring-web</artifactId>
130+ <scope>provided</scope>
131+ </dependency>
132+ <dependency>
133+ <groupId>org.springframework</groupId>
134+ <artifactId>spring-webmvc</artifactId>
135+ <scope>provided</scope>
136+ </dependency>
137+ <dependency>
138+ <groupId>org.apache.commons</groupId>
139+ <artifactId>commons-lang3</artifactId>
140+ <scope>provided</scope>
141+ </dependency>
142+ <dependency>
143+ <groupId>org.apache.httpcomponents</groupId>
144+ <artifactId>httpclient</artifactId>
145+ <scope>provided</scope>
146+ </dependency>
147+ <dependency>
148+ <groupId>javax.servlet.jsp</groupId>
149+ <artifactId>jsp-api</artifactId>
150+ <scope>provided</scope>
151+ </dependency>
152+ <dependency>
153+ <groupId>javax.servlet</groupId>
154+ <artifactId>javax.servlet-api</artifactId>
155+ <scope>provided</scope>
156+ </dependency>
157+ <dependency>
158+ <groupId>joda-time</groupId>
159+ <artifactId>joda-time</artifactId>
160+ <scope>provided</scope>
161+ </dependency>
162+ -->
163+ <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring4 -->
164+
165+
166+ </dependencies >
167+ </project >
0 commit comments