zhouping
5 years ago
34141 changed files with 259940 additions and 258673 deletions
@ -0,0 +1,18 @@ |
|||||||
|
<?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/xsd/maven-4.0.0.xsd"> |
||||||
|
<modelVersion>4.0.0</modelVersion> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>step1</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
<relativePath>../../base-third-settings/base-third-step1</relativePath> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>fine-antlr-old</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
|
||||||
|
</project> |
@ -1,123 +1,26 @@ |
|||||||
<!-- |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
~ Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
~ Use of this file is governed by the BSD 3-clause license that |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
~ can be found in the LICENSE.txt file in the project root. |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||||
--> |
|
||||||
|
|
||||||
<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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<parent> |
<parent> |
||||||
<groupId>org.antlr</groupId> |
<groupId>com.fr.third</groupId> |
||||||
<artifactId>antlr4-master</artifactId> |
<artifactId>step1</artifactId> |
||||||
<version>4.7.3-SNAPSHOT</version> |
<version>${revision}</version> |
||||||
<relativePath>../../pom.xml</relativePath> |
<relativePath>../../base-third-settings/base-third-step1</relativePath> |
||||||
</parent> |
</parent> |
||||||
<artifactId>antlr4-runtime</artifactId> |
|
||||||
<name>ANTLR 4 Runtime</name> |
|
||||||
<description>The ANTLR 4 Runtime</description> |
|
||||||
|
|
||||||
<properties> |
<artifactId>fine-antlr4</artifactId> |
||||||
<!-- Assumes dot is in the system path, or specified for the build. --> |
<version>${revision}</version> |
||||||
<dot.path>dot</dot.path> |
|
||||||
</properties> |
<dependencies> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>org.abego.treelayout.core</artifactId> |
||||||
|
<version>local</version> |
||||||
|
<scope>system</scope> |
||||||
|
<systemPath>${basedir}/lib/org.abego.treelayout.core.jar</systemPath> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
|
||||||
<build> |
|
||||||
<sourceDirectory>src</sourceDirectory> |
|
||||||
<plugins> |
|
||||||
<plugin> <!-- create src jar --> |
|
||||||
<groupId>org.apache.maven.plugins</groupId> |
|
||||||
<artifactId>maven-source-plugin</artifactId> |
|
||||||
<version>3.0.1</version> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<goals> |
|
||||||
<goal>jar</goal> |
|
||||||
</goals> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
<plugin> <!-- run dot on the images used by PredictionContext.java --> |
|
||||||
<groupId>us.bryon</groupId> |
|
||||||
<artifactId>graphviz-maven-plugin</artifactId> |
|
||||||
<version>1.0</version> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<phase>deploy</phase> |
|
||||||
<goals> |
|
||||||
<goal>dot</goal> |
|
||||||
</goals> |
|
||||||
<configuration> |
|
||||||
<dot>${dot.path}</dot> |
|
||||||
<destdir>${project.build.directory}/apidocs</destdir> |
|
||||||
<output>svg</output> |
|
||||||
</configuration> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
<plugin> <!-- create javadoc jar --> |
|
||||||
<groupId>org.apache.maven.plugins</groupId> |
|
||||||
<artifactId>maven-javadoc-plugin</artifactId> |
|
||||||
<version>2.10.4</version> |
|
||||||
<configuration> |
|
||||||
<javadocVersion>1.7</javadocVersion> |
|
||||||
<failOnError>false</failOnError> |
|
||||||
</configuration> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<goals> |
|
||||||
<goal>javadoc</goal> |
|
||||||
</goals> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
<plugin> |
|
||||||
<groupId>org.antlr</groupId> |
|
||||||
<artifactId>antlr4-maven-plugin</artifactId> |
|
||||||
<version>4.5.3</version> <!-- use older version to process XPathLexer.g4, avoiding cyclic build dependency --> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>antlr</id> |
|
||||||
<configuration> |
|
||||||
<sourceDirectory>src</sourceDirectory> |
|
||||||
</configuration> |
|
||||||
<goals> |
|
||||||
<goal>antlr4</goal> |
|
||||||
</goals> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
<plugin> |
|
||||||
<groupId>org.apache.felix</groupId> |
|
||||||
<artifactId>maven-bundle-plugin</artifactId> |
|
||||||
<version>2.5.4</version> |
|
||||||
<executions> |
|
||||||
<execution> |
|
||||||
<id>bundle-manifest</id> |
|
||||||
<phase>process-classes</phase> |
|
||||||
<configuration> |
|
||||||
<instructions> |
|
||||||
<Automatic-Module-Name>org.antlr.antlr4.runtime</Automatic-Module-Name> |
|
||||||
<Bundle-SymbolicName>org.antlr.antlr4-runtime</Bundle-SymbolicName> |
|
||||||
</instructions> |
|
||||||
</configuration> |
|
||||||
<goals> |
|
||||||
<goal>manifest</goal> |
|
||||||
</goals> |
|
||||||
</execution> |
|
||||||
</executions> |
|
||||||
</plugin> |
|
||||||
<plugin> |
|
||||||
<artifactId>maven-jar-plugin</artifactId> |
|
||||||
<version>3.0.0</version> |
|
||||||
<configuration> |
|
||||||
<archive> |
|
||||||
<manifest> |
|
||||||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
||||||
</manifest> |
|
||||||
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
|
||||||
</archive> |
|
||||||
</configuration> |
|
||||||
</plugin> |
|
||||||
</plugins> |
|
||||||
</build> |
|
||||||
</project> |
</project> |
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue