|
14 | 14 | <webflow-version>2.4.0.BUILD-SNAPSHOT</webflow-version>
|
15 | 15 | <slf4j-version>1.5.10</slf4j-version>
|
16 | 16 | <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> |
20 | 20 | <tiles-version>2.2.2</tiles-version>
|
21 | 21 | </properties>
|
22 | 22 |
|
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> |
30 | 30 |
|
31 | 31 | <dependencies>
|
| 32 | + |
32 | 33 | <!-- Thymeleaf -->
|
33 | 34 | <dependency>
|
34 | 35 | <groupId>org.thymeleaf</groupId>
|
|
50 | 51 | <artifactId>thymeleaf-extras-springsecurity3</artifactId>
|
51 | 52 | <version>${thymeleaf-extras-springsecurity3-version}</version>
|
52 | 53 | </dependency>
|
| 54 | + |
53 | 55 | <!-- Spring -->
|
54 | 56 | <dependency>
|
55 | 57 | <groupId>org.springframework</groupId>
|
|
109 | 111 | </exclusion>
|
110 | 112 | </exclusions>
|
111 | 113 | </dependency>
|
| 114 | + |
112 | 115 | <!-- Logging -->
|
113 | 116 | <dependency>
|
114 | 117 | <groupId>org.slf4j</groupId>
|
|
150 | 153 | </exclusions>
|
151 | 154 | <scope>runtime</scope>
|
152 | 155 | </dependency>
|
| 156 | + |
153 | 157 | <!-- Database, JPA -->
|
154 | 158 | <dependency>
|
155 | 159 | <groupId>org.hsqldb</groupId>
|
|
162 | 166 | <artifactId>hibernate-entitymanager</artifactId>
|
163 | 167 | <version>3.5.0-Final</version>
|
164 | 168 | </dependency>
|
| 169 | + |
165 | 170 | <!-- Servlet -->
|
166 | 171 | <dependency>
|
167 | 172 | <groupId>javax.servlet</groupId>
|
|
224 | 229 | <artifactId>jaxb-api</artifactId>
|
225 | 230 | <version>2.1</version>
|
226 | 231 | </dependency>
|
| 232 | + |
227 | 233 | <!-- Joda Time -->
|
228 | 234 | <dependency>
|
229 | 235 | <groupId>joda-time</groupId>
|
|
236 | 242 | <version>1.0.2</version>
|
237 | 243 | <scope>runtime</scope>
|
238 | 244 | </dependency>
|
| 245 | + |
239 | 246 | <!-- Test -->
|
240 | 247 | <dependency>
|
241 | 248 | <groupId>org.easymock</groupId>
|
|
257 | 264 | </dependency>
|
258 | 265 | </dependencies>
|
259 | 266 |
|
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 | + |
300 | 308 | </project>
|
0 commit comments