1<?xml version="1.0" encoding="UTF-8"?> 2<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"> 3 <modelVersion>4.0.0</modelVersion> 4 <artifactId>antlr-runtime</artifactId> 5 <packaging>jar</packaging> 6 7 <!-- 8 9 Inherit from the ANTLR master pom, which tells us what 10 version we are and allows us to inherit dependencies 11 and so on. 12 13 --> 14 <parent> 15 <groupId>org.antlr</groupId> 16 <artifactId>antlr-master</artifactId> 17 <version>3.5.3</version> 18 <relativePath>../../pom.xml</relativePath> 19 </parent> 20 21 <name>ANTLR 3 Runtime</name> 22 23 <description>A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.</description> 24 <url>http://www.antlr.org</url> 25 <developers> 26 <developer> 27 <name>Terence Parr</name> 28 <organization>USFCA</organization> 29 <organizationUrl>http://www.cs.usfca.edu</organizationUrl> 30 <email>[email protected]</email> 31 <roles> 32 <role>Project Leader</role> 33 <role>Developer - Java Target</role> 34 </roles> 35 <timezone>PST</timezone> 36 </developer> 37 <developer> 38 <name>Jim Idle</name> 39 <organization>Temporal Wave LLC</organization> 40 <organizationUrl>http://www.temporal-wave.com</organizationUrl> 41 <email>[email protected]</email> 42 <roles> 43 <role>Developer - Maven stuff</role> 44 <role>Developer - C Target</role> 45 </roles> 46 <timezone>PST</timezone> 47 </developer> 48 </developers> 49 50 <dependencies> 51 52 <dependency> 53 <groupId>org.antlr</groupId> 54 <artifactId>stringtemplate</artifactId> 55 <scope>compile</scope> 56 <optional>true</optional> 57 </dependency> 58 59 <dependency> 60 <groupId>junit</groupId> 61 <artifactId>junit</artifactId> 62 </dependency> 63 64 </dependencies> 65 66 <build> 67 <plugins> 68 <plugin> <!-- create javadoc jar --> 69 <groupId>org.apache.maven.plugins</groupId> 70 <artifactId>maven-javadoc-plugin</artifactId> 71 <version>3.3.1</version> 72 <configuration> 73 <javadocVersion>1.8</javadocVersion> 74 <failOnError>false</failOnError> 75 </configuration> 76 <executions> 77 <execution> 78 <goals> 79 <goal>javadoc</goal> 80 </goals> 81 </execution> 82 </executions> 83 </plugin> 84 </plugins> 85 </build> 86</project> 87