2012-02-09 05:07:06 +08:00
|
|
|
|
2014-02-04 10:09:14 +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/xsd/maven-4.0.0.xsd">
|
2012-02-09 05:07:06 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2012-11-24 03:28:52 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.antlr</groupId>
|
2012-12-05 02:57:56 +08:00
|
|
|
<artifactId>antlr4-master</artifactId>
|
2014-06-29 11:40:33 +08:00
|
|
|
<version>4.4-SNAPSHOT</version>
|
2012-11-24 03:28:52 +08:00
|
|
|
<relativePath>../..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2012-02-09 05:07:06 +08:00
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
|
2012-11-24 03:37:36 +08:00
|
|
|
<name>ANTLR 4 Runtime</name>
|
2012-11-28 13:34:36 +08:00
|
|
|
<description>The ANTLR 4 Runtime</description>
|
2012-02-09 05:07:06 +08:00
|
|
|
|
2014-01-20 11:33:05 +08:00
|
|
|
<properties>
|
|
|
|
<!-- Assumes dot is in the system path, or specified for the build. -->
|
|
|
|
<dot.path>dot</dot.path>
|
|
|
|
</properties>
|
|
|
|
|
2012-02-09 05:07:06 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-04-04 22:52:06 +08:00
|
|
|
<groupId>org.abego.treelayout</groupId>
|
|
|
|
<artifactId>org.abego.treelayout.core</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>compile</scope>
|
2012-02-09 05:07:06 +08:00
|
|
|
</dependency>
|
2014-01-22 04:21:49 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-annotations</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-02-09 05:07:06 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2013-01-04 11:20:35 +08:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>sonatype-oss-release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>us.bryon</groupId>
|
|
|
|
<artifactId>graphviz-maven-plugin</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>dot</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2014-01-20 11:33:05 +08:00
|
|
|
<dot>${dot.path}</dot>
|
2013-01-04 11:20:35 +08:00
|
|
|
<destdir>${project.build.directory}/apidocs</destdir>
|
|
|
|
<output>svg</output>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-01-24 03:40:03 +08:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includeDependencySources>true</includeDependencySources>
|
|
|
|
<dependencySourceIncludes>
|
|
|
|
<dependencySourceInclude>org.antlr:*</dependencySourceInclude>
|
|
|
|
</dependencySourceIncludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-01-24 12:28:58 +08:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<minimizeJar>false</minimizeJar>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
<createSourcesJar>true</createSourcesJar>
|
|
|
|
<shadedClassifierName>complete</shadedClassifierName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-01-04 11:20:35 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2012-02-09 05:07:06 +08:00
|
|
|
<build>
|
|
|
|
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2014-02-04 10:09:14 +08:00
|
|
|
<resources />
|
2012-02-09 05:07:06 +08:00
|
|
|
|
2013-11-15 05:35:43 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
2014-06-19 08:36:26 +08:00
|
|
|
<version>4.2.2</version>
|
2013-11-15 05:35:43 +08:00
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2012-02-09 05:07:06 +08:00
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|