2017-03-10 09:36:25 +08:00
<!-- ~ Copyright (c) 2012 - 2016 The ANTLR Project. All rights reserved. ~ Use of this file is governed by the BSD 3 - clause license that ~ can be found in the LICENSE.txt file in the project root. -->
2016-12-04 03:34:30 +08:00
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" >
2017-03-10 09:36:25 +08:00
<modelVersion > 4.0.0</modelVersion>
<parent >
<groupId > org.sonatype.oss</groupId>
<artifactId > oss-parent</artifactId>
<version > 9</version>
</parent>
<groupId > org.antlr</groupId>
<artifactId > antlr4-master</artifactId>
<version > 4.7-SNAPSHOT</version>
<packaging > pom</packaging>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<name > ANTLR 4</name>
<description > ANTLR 4 Master Build POM</description>
<url > http://www.antlr.org</url>
<inceptionYear > 1992</inceptionYear>
<organization >
<name > ANTLR</name>
<url > http://www.antlr.org</url>
</organization>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<licenses >
<license >
<name > The BSD License</name>
<url > http://www.antlr.org/license.html</url>
<distribution > repo</distribution>
</license>
</licenses>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<developers >
<developer >
<name > Terence Parr</name>
<url > http://parrt.cs.usfca.edu</url>
<roles >
<role > Project lead - ANTLR</role>
</roles>
</developer>
<developer >
<name > Sam Harwell</name>
<url > http://tunnelvisionlabs.com</url>
<roles >
<role > Developer</role>
</roles>
</developer>
<developer >
<name > Eric Vergnaud</name>
<roles >
<role > Developer - JavaScript, C#, Python 2, Python 3</role>
</roles>
</developer>
<developer >
<name > Peter Boyer</name>
<roles >
<role > Developer - Go</role>
</roles>
</developer>
<developer >
<name > Jim Idle</name>
<email > jimi@idle.ws</email>
<url > http://www.linkedin.com/in/jimidle</url>
<roles >
<role > Developer - Maven Plugin</role>
</roles>
</developer>
<developer >
<name > Mike Lischke</name>
<roles >
<role > Developer - C++ Target</role>
</roles>
</developer>
2017-03-10 10:05:08 +08:00
<developer >
<name > Tom Everett</name>
<roles >
<role > Developer</role>
</roles>
</developer>
2017-03-10 09:36:25 +08:00
</developers>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<modules >
<module > runtime/Java</module>
<module > tool</module>
<module > antlr4-maven-plugin</module>
<module > tool-testsuite</module>
<module > runtime-testsuite/annotations</module>
<module > runtime-testsuite/processors</module>
<module > runtime-testsuite</module>
</modules>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding > UTF-8</project.reporting.outputEncoding>
<antlr.testinprocess > true</antlr.testinprocess>
<maven.compiler.source > 1.7</maven.compiler.source>
<maven.compiler.target > 1.7</maven.compiler.target>
</properties>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<mailingLists >
<mailingList >
<name > antlr-discussion</name>
<archive > https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion</archive>
</mailingList>
</mailingLists>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<issueManagement >
<system > GitHub Issues</system>
<url > https://github.com/antlr/antlr4/issues</url>
</issueManagement>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<scm >
<url > https://github.com/antlr/antlr4/tree/master</url>
<connection > scm:git:git://github.com/antlr/antlr4.git</connection>
<developerConnection > scm:git:git@github.com:antlr/antlr4.git</developerConnection>
<tag > HEAD</tag>
</scm>
2015-04-20 01:24:07 +08:00
2017-03-10 09:36:25 +08:00
<build >
<resources >
<resource >
<directory > resources</directory>
</resource>
</resources>
<testResources >
<testResource >
<directory > test</directory>
</testResource>
</testResources>
<pluginManagement >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.6.0</version>
<configuration >
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
2015-04-20 01:24:07 +08:00
</project>