1 <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"> 2 <modelVersion>4.0.0</modelVersion> 3 <parent> 4 <groupId>org.sonatype.oss</groupId> 5 <artifactId>oss-parent</artifactId> 6 <version>9</version> 7 </parent> 8 <groupId>org.antlr</groupId> 9 <artifactId>antlr4-master</artifactId> 10 <version>4.5.3</version> 11 <packaging>pom</packaging> 12 13 <name>ANTLR 4</name> 14 <description>ANTLR 4 Master Build POM</description> 15 <url>http://www.antlr.org</url> 16 <inceptionYear>1992</inceptionYear> 17 <organization> 18 <name>ANTLR</name> 19 <url>http://www.antlr.org</url> 20 </organization> 21 22 <licenses> 23 <license> 24 <name>The BSD License</name> 25 <url>http://www.antlr.org/license.html</url> 26 <distribution>repo</distribution> 27 </license> 28 </licenses> 29 30 <developers> 31 <developer> 32 <name>Terence Parr</name> 33 <url>http://antlr.org/wiki/display/~admin/Home</url> 34 <roles> 35 <role>Project lead - ANTLR</role> 36 </roles> 37 </developer> 38 <developer> 39 <name>Sam Harwell</name> 40 <url>http://tunnelvisionlabs.com</url> 41 <roles> 42 <role>Developer</role> 43 </roles> 44 </developer> 45 <developer> 46 <name>Eric Vergnaud</name> 47 <roles> 48 <role>Developer - JavaScript, C#, Python 2, Python 3</role> 49 </roles> 50 </developer> 51 <developer> 52 <name>Jim Idle</name> 53 <email>jimi (a] idle.ws</email> 54 <url>http://www.linkedin.com/in/jimidle</url> 55 <roles> 56 <role>Developer - Maven Plugin</role> 57 </roles> 58 </developer> 59 </developers> 60 61 <modules> 62 <module>runtime/Java</module> 63 <module>tool</module> 64 <module>antlr4-maven-plugin</module> 65 <module>tool-testsuite</module> 66 <module>runtime-testsuite</module> 67 </modules> 68 69 <properties> 70 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 71 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 72 <antlr.testinprocess>true</antlr.testinprocess> 73 <maven.compiler.source>1.6</maven.compiler.source> 74 <maven.compiler.target>1.6</maven.compiler.target> 75 </properties> 76 77 <mailingLists> 78 <mailingList> 79 <name>antlr-discussion</name> 80 <archive>https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion</archive> 81 </mailingList> 82 </mailingLists> 83 84 <issueManagement> 85 <system>GitHub Issues</system> 86 <url>https://github.com/antlr/antlr4/issues</url> 87 </issueManagement> 88 89 <scm> 90 <url>https://github.com/antlr/antlr4/tree/master</url> 91 <connection>scm:git:git://github.com/antlr/antlr4.git</connection> 92 <developerConnection>scm:git:git (a] github.com:antlr/antlr4.git</developerConnection> 93 <tag>HEAD</tag> 94 </scm> 95 96 <build> 97 <resources> 98 <resource> 99 <directory>resources</directory> 100 </resource> 101 </resources> 102 <testSourceDirectory>test</testSourceDirectory> 103 <testResources> 104 <testResource> 105 <directory>test</directory> 106 </testResource> 107 </testResources> 108 <pluginManagement> 109 <plugins> 110 <plugin> 111 <groupId>org.apache.maven.plugins</groupId> 112 <artifactId>maven-compiler-plugin</artifactId> 113 <configuration> 114 <source>${maven.compiler.source}</source> 115 <target>${maven.compiler.target}</target> 116 </configuration> 117 </plugin> 118 <plugin> 119 <groupId>org.apache.maven.plugins</groupId> 120 <artifactId>maven-javadoc-plugin</artifactId> 121 </plugin> 122 </plugins> 123 </pluginManagement> 124 </build> 125 </project> 126