75 lines
2.2 KiB
XML
75 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<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/maven-v4_0_0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<groupId>de.lusiardi.maven</groupId>
|
||
<artifactId>mavenAntlrIntegration</artifactId>
|
||
<name>Apache Maven – ANTLR Integration</name>
|
||
<version>0.1</version>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.antlr</groupId>
|
||
<artifactId>antlr3-maven-plugin</artifactId>
|
||
<version>3.5</version>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>antlr</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>2.5.1</version>
|
||
<configuration>
|
||
<source>1.5</source>
|
||
<target>1.5</target>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-shade-plugin</artifactId>
|
||
<version>2.1</version>
|
||
<executions>
|
||
<execution>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>shade</goal>
|
||
</goals>
|
||
<configuration>
|
||
<transformers>
|
||
<transformer>
|
||
<mainClass>b1.Main</mainClass>
|
||
</transformer>
|
||
</transformers>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<repositories>
|
||
<repository>
|
||
<id>jline</id>
|
||
<name>JLine Project Repository</name>
|
||
<url>http://jline.sourceforge.net/m2repo</url>
|
||
</repository>
|
||
</repositories>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>4.11</version>
|
||
<scope>test</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>hamcrest-core</artifactId>
|
||
<groupId>org.hamcrest</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|
||
|