|
233
|
1 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
2 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
3 |
<modelVersion>4.0.0</modelVersion>
|
|
|
4 |
<groupId>org.thymeleaf.extras</groupId>
|
|
|
5 |
<artifactId>thymeleaf-joda-dialect</artifactId>
|
|
|
6 |
<version>0.0.3</version>
|
|
|
7 |
<inceptionYear>2013</inceptionYear>
|
|
|
8 |
<contributors>
|
|
|
9 |
<contributor>
|
|
|
10 |
<name>Tom-Steve Watzke</name>
|
|
|
11 |
<email>ts.watzke@pitcom.de</email>
|
|
|
12 |
<roles>
|
|
|
13 |
<role>Project creator and Lead developer</role>
|
|
|
14 |
</roles>
|
|
|
15 |
</contributor>
|
|
|
16 |
<contributor>
|
|
|
17 |
<name>Dieter Hubau</name>
|
|
|
18 |
<email>dhubau@gmail.com</email>
|
|
|
19 |
<roles>
|
|
|
20 |
<role>Developer</role>
|
|
|
21 |
</roles>
|
|
|
22 |
</contributor>
|
|
|
23 |
</contributors>
|
|
|
24 |
<description>Thymeleaf dialect for formatting Joda Time objects</description>
|
|
|
25 |
|
|
|
26 |
<properties>
|
|
|
27 |
<java-version>1.7</java-version>
|
|
|
28 |
<org.springframework-version>3.2.4.RELEASE</org.springframework-version>
|
|
|
29 |
<org.springsecurityframework-version>3.2.4.RELEASE</org.springsecurityframework-version>
|
|
|
30 |
<org.thymeleaf-version>2.1.1.RELEASE</org.thymeleaf-version>
|
|
|
31 |
</properties>
|
|
|
32 |
|
|
|
33 |
<dependencies>
|
|
|
34 |
<dependency>
|
|
|
35 |
<groupId>org.springframework</groupId>
|
|
|
36 |
<artifactId>spring-beans</artifactId>
|
|
|
37 |
<version>${org.springframework-version}</version>
|
|
|
38 |
</dependency>
|
|
|
39 |
<dependency>
|
|
|
40 |
<groupId>org.springframework</groupId>
|
|
|
41 |
<artifactId>spring-webmvc</artifactId>
|
|
|
42 |
<version>${org.springframework-version}</version>
|
|
|
43 |
</dependency>
|
|
|
44 |
|
|
|
45 |
<!-- thymeleaf html5 template resolver -->
|
|
|
46 |
<dependency>
|
|
|
47 |
<groupId>org.thymeleaf</groupId>
|
|
|
48 |
<artifactId>thymeleaf</artifactId>
|
|
|
49 |
<version>${org.thymeleaf-version}</version>
|
|
|
50 |
<type>jar</type>
|
|
|
51 |
<scope>compile</scope>
|
|
|
52 |
</dependency>
|
|
|
53 |
<dependency>
|
|
|
54 |
<groupId>org.thymeleaf</groupId>
|
|
|
55 |
<artifactId>thymeleaf-spring3</artifactId>
|
|
|
56 |
<version>${org.thymeleaf-version}</version>
|
|
|
57 |
<type>jar</type>
|
|
|
58 |
<scope>compile</scope>
|
|
|
59 |
</dependency>
|
|
|
60 |
|
|
|
61 |
<dependency>
|
|
|
62 |
<groupId>joda-time</groupId>
|
|
|
63 |
<artifactId>joda-time</artifactId>
|
|
|
64 |
<version>2.1</version>
|
|
|
65 |
<type>jar</type>
|
|
|
66 |
<scope>compile</scope>
|
|
|
67 |
</dependency>
|
|
|
68 |
|
|
|
69 |
<dependency>
|
|
|
70 |
<groupId>javax.servlet</groupId>
|
|
|
71 |
<artifactId>servlet-api</artifactId>
|
|
|
72 |
<version>2.5</version>
|
|
|
73 |
<scope>provided</scope>
|
|
|
74 |
</dependency>
|
|
|
75 |
|
|
|
76 |
<dependency>
|
|
|
77 |
<groupId>org.springframework</groupId>
|
|
|
78 |
<artifactId>spring-test</artifactId>
|
|
|
79 |
<version>${org.springframework-version}</version>
|
|
|
80 |
<scope>test</scope>
|
|
|
81 |
</dependency>
|
|
|
82 |
<dependency>
|
|
|
83 |
<groupId>junit</groupId>
|
|
|
84 |
<artifactId>junit</artifactId>
|
|
|
85 |
<version>4.8.1</version>
|
|
|
86 |
<scope>test</scope>
|
|
|
87 |
</dependency>
|
|
|
88 |
</dependencies>
|
|
|
89 |
|
|
|
90 |
<build>
|
|
|
91 |
<plugins>
|
|
|
92 |
<plugin>
|
|
|
93 |
<groupId>org.apache.tomcat.maven</groupId>
|
|
|
94 |
<artifactId>tomcat7-maven-plugin</artifactId>
|
|
|
95 |
<version>2.0</version>
|
|
|
96 |
<executions>
|
|
|
97 |
<execution>
|
|
|
98 |
<id>deploy</id>
|
|
|
99 |
<phase>pre-integration-test</phase>
|
|
|
100 |
<goals>
|
|
|
101 |
<goal>deploy</goal>
|
|
|
102 |
</goals>
|
|
|
103 |
</execution>
|
|
|
104 |
</executions>
|
|
|
105 |
</plugin>
|
|
|
106 |
<plugin>
|
|
|
107 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
108 |
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
109 |
<version>2.3.2</version>
|
|
|
110 |
<configuration>
|
|
|
111 |
<source>${java-version}</source>
|
|
|
112 |
<target>${java-version}</target>
|
|
|
113 |
<compilerArgument>-Xlint:all</compilerArgument>
|
|
|
114 |
<showWarnings>true</showWarnings>
|
|
|
115 |
<showDeprecation>true</showDeprecation>
|
|
|
116 |
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
117 |
</configuration>
|
|
|
118 |
</plugin>
|
|
|
119 |
</plugins>
|
|
|
120 |
</build>
|
|
|
121 |
|
|
|
122 |
<repositories>
|
|
|
123 |
<!-- Necessary if using milestone builds of SpringSource products (as above) -->
|
|
|
124 |
<repository>
|
|
|
125 |
<id>spring-snapshot</id>
|
|
|
126 |
<name>Spring Maven SNAPSHOT Repository</name>
|
|
|
127 |
<url>http://repo.springsource.org/libs-snapshot</url>
|
|
|
128 |
</repository>
|
|
|
129 |
<!-- Required, as Spring JavaConfig has dependencies on released versions
|
|
|
130 |
of SpringSource products -->
|
|
|
131 |
<repository>
|
|
|
132 |
<id>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</id>
|
|
|
133 |
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
|
134 |
</repository>
|
|
|
135 |
<!-- Required, as Spring JavaConfig has dependencies on External OSGi bundles -->
|
|
|
136 |
<repository>
|
|
|
137 |
<id>SpringSource Enterprise Bundle Repository - External Bundle Releases</id>
|
|
|
138 |
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
|
139 |
</repository>
|
|
|
140 |
<repository>
|
|
|
141 |
<id>java.net</id>
|
|
|
142 |
<url>http://download.java.net/maven/2/</url>
|
|
|
143 |
</repository>
|
|
|
144 |
</repositories>
|
|
|
145 |
</project>
|