diff 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
line wrap: on
line diff
--- a/pom.xml	Tue Sep 20 16:01:02 2016 +0200
+++ b/pom.xml	Fri Sep 30 14:05:28 2016 +0200
@@ -122,6 +122,12 @@
             <version>4.3</version>
         </dependency>
 
+		<dependency>
+			<groupId>org.antlr</groupId>
+			<artifactId>antlr4-runtime</artifactId>
+			<version>4.5</version>
+		</dependency>
+
         <!-- Logging -->
         <dependency>
             <groupId>log4j</groupId>
@@ -204,6 +210,21 @@
                             </compilerArguments>
                         </configuration>
                     </plugin>
+                    <plugin>
+						<groupId>org.antlr</groupId>
+						<artifactId>antlr4-maven-plugin</artifactId>
+						<version>4.5</version>
+						<configuration>
+							<outputDirectory>${basedir}/src/main/java</outputDirectory>
+						</configuration>
+						<executions>
+							<execution>
+								<goals>
+									<goal>antlr4</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
                 </plugins>
             </build>
         </profile>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)