2013-07-23 20:23:02 +02:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
|
|
|
http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>de.lusiardi.maven</groupId>
|
2013-07-23 20:24:26 +02:00
|
|
|
|
<artifactId>mavenAntlrIntegration</artifactId>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<version>0.1</version>
|
2013-07-23 20:24:26 +02:00
|
|
|
|
<name>Apache Maven – ANTLR Integration</name>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2013-07-23 20:31:04 +02:00
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
<artifactId>antlr3-maven-plugin</artifactId>
|
2013-07-23 20:35:38 +02:00
|
|
|
|
<version>3.5</version>
|
2013-07-23 20:31:04 +02:00
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>antlr</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2013-07-23 20:35:38 +02:00
|
|
|
|
<version>2.5.1</version>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
<configuration>
|
2013-07-23 20:31:04 +02:00
|
|
|
|
<source>1.5</source>
|
|
|
|
|
<target>1.5</target>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2013-07-23 20:35:38 +02:00
|
|
|
|
<version>2.1</version>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<transformers>
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
|
<mainClass>b1.Main</mainClass>
|
|
|
|
|
</transformer>
|
|
|
|
|
</transformers>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2013-07-23 20:35:38 +02:00
|
|
|
|
<version>4.11</version>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
|
<artifactId>jline</artifactId>
|
2013-07-23 20:35:38 +02:00
|
|
|
|
<version>2.11</version>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
</dependency>
|
2013-07-23 20:31:04 +02:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
<artifactId>antlr-runtime</artifactId>
|
2013-07-23 20:35:38 +02:00
|
|
|
|
<version>3.5</version>
|
2013-07-23 20:31:04 +02:00
|
|
|
|
<type>jar</type>
|
|
|
|
|
</dependency>
|
2013-07-23 20:23:02 +02:00
|
|
|
|
</dependencies>
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jline</id>
|
|
|
|
|
<name>JLine Project Repository</name>
|
|
|
|
|
<url>http://jline.sourceforge.net/m2repo</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
</project>
|