Mercurial > lada > lada-server
comparison pom.xml @ 1097:186d602e031a
Merged branch schema-update into default.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Fri, 14 Oct 2016 18:17:42 +0200 |
parents | 163d1abaece7 |
children | de7184e1370d |
comparison
equal
deleted
inserted
replaced
1096:565c8a67034d | 1097:186d602e031a |
---|---|
68 <groupId>com.fasterxml.jackson.core</groupId> | 68 <groupId>com.fasterxml.jackson.core</groupId> |
69 <artifactId>jackson-annotations</artifactId> | 69 <artifactId>jackson-annotations</artifactId> |
70 <version>2.5.1</version> | 70 <version>2.5.1</version> |
71 </dependency> | 71 </dependency> |
72 <dependency> | 72 <dependency> |
73 <groupId>com.fasterxml.jackson.core</groupId> | |
74 <artifactId>jackson-databind</artifactId> | |
75 <version>2.5.1</version> | |
76 </dependency> | |
77 <dependency> | |
78 <groupId>commons-io</groupId> | |
79 <artifactId>commons-io</artifactId> | |
80 <version>2.5</version> | |
81 </dependency> | |
82 <dependency> | |
73 <groupId>org.opensaml</groupId> | 83 <groupId>org.opensaml</groupId> |
74 <artifactId>opensaml</artifactId> | 84 <artifactId>opensaml</artifactId> |
75 <version>2.6.4</version> | 85 <version>2.6.4</version> |
76 </dependency> | 86 </dependency> |
77 | 87 |
110 <groupId>org.hibernate</groupId> | 120 <groupId>org.hibernate</groupId> |
111 <artifactId>hibernate-spatial</artifactId> | 121 <artifactId>hibernate-spatial</artifactId> |
112 <version>4.3</version> | 122 <version>4.3</version> |
113 </dependency> | 123 </dependency> |
114 | 124 |
125 <dependency> | |
126 <groupId>org.antlr</groupId> | |
127 <artifactId>antlr4-runtime</artifactId> | |
128 <version>4.5</version> | |
129 </dependency> | |
130 | |
115 <!-- Logging --> | 131 <!-- Logging --> |
116 <dependency> | 132 <dependency> |
117 <groupId>log4j</groupId> | 133 <groupId>log4j</groupId> |
118 <artifactId>log4j</artifactId> | 134 <artifactId>log4j</artifactId> |
119 <version>1.2.17</version> | 135 <version>1.2.17</version> |
153 <artifactId>resteasy-client</artifactId> | 169 <artifactId>resteasy-client</artifactId> |
154 <version>3.0.11.Final</version> | 170 <version>3.0.11.Final</version> |
155 <scope>test</scope> | 171 <scope>test</scope> |
156 </dependency> | 172 </dependency> |
157 <dependency> | 173 <dependency> |
158 <groupId>org.jboss.arquillian.extension</groupId> | 174 <groupId>org.jboss.arquillian.extension</groupId> |
159 <artifactId>arquillian-persistence-dbunit</artifactId> | 175 <artifactId>arquillian-persistence-dbunit</artifactId> |
160 <version>1.0.0.Alpha7</version> | 176 <version>1.0.0.Alpha7</version> |
161 <scope>test</scope> | 177 <scope>test</scope> |
162 </dependency> | 178 </dependency> |
163 </dependencies> | 179 </dependencies> |
164 | 180 |
165 <profiles> | 181 <profiles> |
166 <profile> | 182 <profile> |
167 <id>default</id> | 183 <id>default</id> |
192 <source>1.7</source> | 208 <source>1.7</source> |
193 <target>1.7</target> | 209 <target>1.7</target> |
194 </compilerArguments> | 210 </compilerArguments> |
195 </configuration> | 211 </configuration> |
196 </plugin> | 212 </plugin> |
213 <plugin> | |
214 <groupId>org.antlr</groupId> | |
215 <artifactId>antlr4-maven-plugin</artifactId> | |
216 <version>4.5</version> | |
217 <configuration> | |
218 <outputDirectory>${basedir}/src/main/java</outputDirectory> | |
219 </configuration> | |
220 <executions> | |
221 <execution> | |
222 <goals> | |
223 <goal>antlr4</goal> | |
224 </goals> | |
225 </execution> | |
226 </executions> | |
227 </plugin> | |
197 </plugins> | 228 </plugins> |
198 </build> | 229 </build> |
199 </profile> | 230 </profile> |
200 | 231 |
201 <profile> | 232 <profile> |