Skip to content

Commit 35fcc08

Browse files
danielfernandezrstoyanchev
authored andcommitted
Modified thymeleaf-extras-* dependencies to version 2.0.0
1 parent ef9d94c commit 35fcc08

File tree

1 file changed

+58
-50
lines changed

1 file changed

+58
-50
lines changed

booking-mvc/pom.xml

Lines changed: 58 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,22 @@
1414
<webflow-version>2.4.0.BUILD-SNAPSHOT</webflow-version>
1515
<slf4j-version>1.5.10</slf4j-version>
1616
<thymeleaf-version>2.0.15</thymeleaf-version>
17-
<thymeleaf-extras-tiles2-version>1.0.0-beta3</thymeleaf-extras-tiles2-version>
18-
<thymeleaf-extras-springsecurity3-version>1.0.0-beta2</thymeleaf-extras-springsecurity3-version>
19-
<thymeleaf-extras-conditionalcomments-version>1.0.0-beta1</thymeleaf-extras-conditionalcomments-version>
17+
<thymeleaf-extras-tiles2-version>2.0.0</thymeleaf-extras-tiles2-version>
18+
<thymeleaf-extras-springsecurity3-version>2.0.0</thymeleaf-extras-springsecurity3-version>
19+
<thymeleaf-extras-conditionalcomments-version>2.0.0</thymeleaf-extras-conditionalcomments-version>
2020
<tiles-version>2.2.2</tiles-version>
2121
</properties>
2222

23-
<repositories>
24-
<repository>
25-
<id>spring-repository</id>
26-
<name>Spring project snapshots, milestones, and releases</name>
27-
<url>http://repo.springsource.org/snapshot</url>
28-
</repository>
29-
</repositories>
23+
<repositories>
24+
<repository>
25+
<id>spring-repository</id>
26+
<name>Spring project snapshots, milestones, and releases</name>
27+
<url>http://repo.springsource.org/snapshot</url>
28+
</repository>
29+
</repositories>
3030

3131
<dependencies>
32+
3233
<!-- Thymeleaf -->
3334
<dependency>
3435
<groupId>org.thymeleaf</groupId>
@@ -50,6 +51,7 @@
5051
<artifactId>thymeleaf-extras-springsecurity3</artifactId>
5152
<version>${thymeleaf-extras-springsecurity3-version}</version>
5253
</dependency>
54+
5355
<!-- Spring -->
5456
<dependency>
5557
<groupId>org.springframework</groupId>
@@ -109,6 +111,7 @@
109111
</exclusion>
110112
</exclusions>
111113
</dependency>
114+
112115
<!-- Logging -->
113116
<dependency>
114117
<groupId>org.slf4j</groupId>
@@ -150,6 +153,7 @@
150153
</exclusions>
151154
<scope>runtime</scope>
152155
</dependency>
156+
153157
<!-- Database, JPA -->
154158
<dependency>
155159
<groupId>org.hsqldb</groupId>
@@ -162,6 +166,7 @@
162166
<artifactId>hibernate-entitymanager</artifactId>
163167
<version>3.5.0-Final</version>
164168
</dependency>
169+
165170
<!-- Servlet -->
166171
<dependency>
167172
<groupId>javax.servlet</groupId>
@@ -224,6 +229,7 @@
224229
<artifactId>jaxb-api</artifactId>
225230
<version>2.1</version>
226231
</dependency>
232+
227233
<!-- Joda Time -->
228234
<dependency>
229235
<groupId>joda-time</groupId>
@@ -236,6 +242,7 @@
236242
<version>1.0.2</version>
237243
<scope>runtime</scope>
238244
</dependency>
245+
239246
<!-- Test -->
240247
<dependency>
241248
<groupId>org.easymock</groupId>
@@ -257,44 +264,45 @@
257264
</dependency>
258265
</dependencies>
259266

260-
<build>
261-
<finalName>booking-mvc</finalName>
262-
<plugins>
263-
<plugin>
264-
<groupId>org.apache.maven.plugins</groupId>
265-
<artifactId>maven-compiler-plugin</artifactId>
266-
<version>2.3.2</version>
267-
<configuration>
268-
<source>1.6</source>
269-
<target>1.6</target>
270-
</configuration>
271-
</plugin>
272-
<plugin>
273-
<groupId>org.apache.maven.plugins</groupId>
274-
<artifactId>maven-surefire-plugin</artifactId>
275-
<version>2.12</version>
276-
<configuration>
277-
<junitArtifactName>junit:junit</junitArtifactName>
278-
<includes>
279-
<include>**/*Tests.java</include>
280-
</includes>
281-
</configuration>
282-
</plugin>
283-
<plugin>
284-
<groupId>org.apache.tomcat.maven</groupId>
285-
<artifactId>tomcat7-maven-plugin</artifactId>
286-
<version>2.0-SNAPSHOT</version>
287-
</plugin>
288-
<plugin>
289-
<groupId>org.apache.maven.plugins</groupId>
290-
<artifactId>maven-eclipse-plugin</artifactId>
291-
<version>2.8</version>
292-
<configuration>
293-
<downloadSources>true</downloadSources>
294-
<downloadJavadocs>false</downloadJavadocs>
295-
<wtpversion>2.0</wtpversion>
296-
</configuration>
297-
</plugin>
298-
</plugins>
299-
</build>
267+
<build>
268+
<finalName>booking-mvc</finalName>
269+
<plugins>
270+
<plugin>
271+
<groupId>org.apache.maven.plugins</groupId>
272+
<artifactId>maven-compiler-plugin</artifactId>
273+
<version>2.3.2</version>
274+
<configuration>
275+
<source>1.6</source>
276+
<target>1.6</target>
277+
</configuration>
278+
</plugin>
279+
<plugin>
280+
<groupId>org.apache.maven.plugins</groupId>
281+
<artifactId>maven-surefire-plugin</artifactId>
282+
<version>2.12</version>
283+
<configuration>
284+
<junitArtifactName>junit:junit</junitArtifactName>
285+
<includes>
286+
<include>**/*Tests.java</include>
287+
</includes>
288+
</configuration>
289+
</plugin>
290+
<plugin>
291+
<groupId>org.apache.tomcat.maven</groupId>
292+
<artifactId>tomcat7-maven-plugin</artifactId>
293+
<version>2.0-SNAPSHOT</version>
294+
</plugin>
295+
<plugin>
296+
<groupId>org.apache.maven.plugins</groupId>
297+
<artifactId>maven-eclipse-plugin</artifactId>
298+
<version>2.8</version>
299+
<configuration>
300+
<downloadSources>true</downloadSources>
301+
<downloadJavadocs>false</downloadJavadocs>
302+
<wtpversion>2.0</wtpversion>
303+
</configuration>
304+
</plugin>
305+
</plugins>
306+
</build>
307+
300308
</project>

0 commit comments

Comments
 (0)