Mercurial > lada > lada-server
comparison pom.xml @ 1069:fdc752cd17fe schema-update
Removed old importer stuff and added new Importer based on antlr4 grammar.
WIP! Currently only the parser without mapping to objects
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 30 Sep 2016 14:05:28 +0200 |
parents | 1b9516c60a5a |
children |
comparison
equal
deleted
inserted
replaced
1052:21ab4d35135a | 1069:fdc752cd17fe |
---|---|
120 <groupId>org.hibernate</groupId> | 120 <groupId>org.hibernate</groupId> |
121 <artifactId>hibernate-spatial</artifactId> | 121 <artifactId>hibernate-spatial</artifactId> |
122 <version>4.3</version> | 122 <version>4.3</version> |
123 </dependency> | 123 </dependency> |
124 | 124 |
125 <dependency> | |
126 <groupId>org.antlr</groupId> | |
127 <artifactId>antlr4-runtime</artifactId> | |
128 <version>4.5</version> | |
129 </dependency> | |
130 | |
125 <!-- Logging --> | 131 <!-- Logging --> |
126 <dependency> | 132 <dependency> |
127 <groupId>log4j</groupId> | 133 <groupId>log4j</groupId> |
128 <artifactId>log4j</artifactId> | 134 <artifactId>log4j</artifactId> |
129 <version>1.2.17</version> | 135 <version>1.2.17</version> |
202 <source>1.7</source> | 208 <source>1.7</source> |
203 <target>1.7</target> | 209 <target>1.7</target> |
204 </compilerArguments> | 210 </compilerArguments> |
205 </configuration> | 211 </configuration> |
206 </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> | |
207 </plugins> | 228 </plugins> |
208 </build> | 229 </build> |
209 </profile> | 230 </profile> |
210 | 231 |
211 <profile> | 232 <profile> |