Skip to content

Instantly share code, notes, and snippets.

@fmarchand
Created January 16, 2019 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fmarchand/17e0d2c86772b60bdf84e851285e0028 to your computer and use it in GitHub Desktop.
Save fmarchand/17e0d2c86772b60bdf84e851285e0028 to your computer and use it in GitHub Desktop.
<project ...>
<modelVersion>4.0.0</modelVersion>
<groupId>com.agaetis.antlr4.mysql</groupId>
<artifactId>parslex</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>MySQL Antlr 4 Lexer/Parser</name>
<properties>
...
<antlr4.visitor>true</antlr4.visitor>
<antlr4.listener>true</antlr4.listener>
</properties>
<dependencies>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.7.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.7.2</version>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment