2012-11-24 01:47:40 +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">
|
|
|
|
|
2012-11-28 13:34:36 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
2012-11-24 01:47:40 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.antlr</groupId>
|
2012-12-05 02:57:56 +08:00
|
|
|
<artifactId>antlr4-master</artifactId>
|
2012-11-24 01:47:40 +08:00
|
|
|
<version>4.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2012-11-24 03:44:10 +08:00
|
|
|
<name>ANTLR 4</name>
|
2012-11-28 13:34:36 +08:00
|
|
|
<description>ANTLR 4 Master Build POM</description>
|
2012-11-24 03:44:10 +08:00
|
|
|
<url>http://www.antlr.org</url>
|
|
|
|
|
2012-11-28 13:34:36 +08:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The BSD License</name>
|
|
|
|
<url>http://www.antlr.org/license.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
|
|
|
<developer>
|
|
|
|
<name>Terence Parr</name>
|
|
|
|
<url>http://antlr.org/wiki/display/~admin/Home</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>
|
|
|
|
|
|
|
|
</developers>
|
|
|
|
|
2012-11-24 01:47:40 +08:00
|
|
|
<modules>
|
|
|
|
<module>runtime/Java</module>
|
|
|
|
<module>tool</module>
|
|
|
|
<module>antlr4-maven-plugin</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2012-12-01 02:28:39 +08:00
|
|
|
<java5.home>${env.JAVA5_HOME}</java5.home>
|
|
|
|
<java6.home>${env.JAVA6_HOME}</java6.home>
|
2012-12-05 02:58:25 +08:00
|
|
|
<bootclasspath.compile>${java6.home}/lib/rt.jar</bootclasspath.compile>
|
|
|
|
<bootclasspath.testCompile>${java6.home}/lib/rt.jar</bootclasspath.testCompile>
|
2012-11-24 01:47:40 +08:00
|
|
|
</properties>
|
|
|
|
|
2012-11-24 03:34:15 +08:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
<url>https://github.com/antlr/antlr4/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
2012-11-24 01:47:40 +08:00
|
|
|
<scm>
|
2012-11-28 13:34:36 +08:00
|
|
|
<url>git://github.com/antlr/antlr4.git</url>
|
2012-11-24 01:47:40 +08:00
|
|
|
<connection>scm:git:git://github.com/antlr/antlr4.git</connection>
|
2012-11-28 13:34:36 +08:00
|
|
|
<developerConnection>scm:git:git@github.com:antlr/antlr4.git</developerConnection>
|
2012-11-24 01:47:40 +08:00
|
|
|
</scm>
|
|
|
|
|
2012-11-28 13:34:36 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-12-01 02:28:39 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-compile</id>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
<compilerArgument>-Xlint:-serial</compilerArgument>
|
|
|
|
<compilerArguments>
|
|
|
|
<bootclasspath>${bootclasspath.compile}</bootclasspath>
|
|
|
|
<Xlint/>
|
|
|
|
</compilerArguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-testCompile</id>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
<compilerArgument>-Xlint:-serial</compilerArgument>
|
|
|
|
<compilerArguments>
|
|
|
|
<bootclasspath>${bootclasspath.testCompile}</bootclasspath>
|
|
|
|
<Xlint/>
|
|
|
|
</compilerArguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2012-11-29 12:12:28 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-12-01 02:26:25 +08:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-11-29 12:12:28 +08:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2012-11-28 13:34:36 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-11-24 01:47:40 +08:00
|
|
|
</project>
|