2015-07-16 05:45:45 +08: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/maven-v4_0_0.xsd">
|
2015-04-20 01:24:07 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-master</artifactId>
|
2016-11-06 07:48:36 +08:00
|
|
|
<version>4.6-SNAPSHOT</version>
|
2015-04-20 01:24:07 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
|
<name>ANTLR 4 Tool</name>
|
|
|
|
<description>The ANTLR 4 grammar compiler.</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
<version>2.44.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>8.1.16.v20140903</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr-runtime</artifactId>
|
|
|
|
<version>3.5.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>ST4</artifactId>
|
|
|
|
<version>4.0.8</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-07-15 05:29:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.abego.treelayout</groupId>
|
|
|
|
<artifactId>org.abego.treelayout.core</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
</dependency>
|
2016-10-05 01:58:43 +08:00
|
|
|
<dependency>
|
2016-11-21 11:50:54 +08:00
|
|
|
<groupId>javax.json</groupId>
|
|
|
|
<artifactId>javax.json-api</artifactId>
|
|
|
|
<version>RELEASE</version>
|
2016-10-05 01:58:43 +08:00
|
|
|
</dependency>
|
2015-04-20 01:24:07 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2015-06-27 03:41:47 +08:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2015-04-20 01:24:07 +08:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>test</directory>
|
|
|
|
</testResource>
|
2015-06-27 03:41:47 +08:00
|
|
|
</testResources>
|
2015-04-20 01:24:07 +08:00
|
|
|
<plugins>
|
2015-06-24 02:01:28 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2015-06-27 03:41:47 +08:00
|
|
|
<version>2.6</version>
|
2015-06-24 02:01:28 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2015-06-27 03:41:47 +08:00
|
|
|
</plugin>
|
2015-04-20 01:24:07 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr3-maven-plugin</artifactId>
|
|
|
|
<version>3.5.2</version>
|
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-07-01 00:07:36 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
2015-07-15 05:29:41 +08:00
|
|
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
2015-08-21 01:06:37 +08:00
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>org.antlr.v4.Tool</Main-Class>
|
|
|
|
</manifestEntries>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2015-07-15 05:29:41 +08:00
|
|
|
</configuration>
|
2015-07-01 00:07:36 +08:00
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2015-07-15 05:29:41 +08:00
|
|
|
</plugin>
|
2015-04-20 01:24:07 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-02-09 05:07:06 +08:00
|
|
|
</project>
|