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 <groupId>org.antlr</groupId> 5 <artifactId>antlr-runtime</artifactId> 6 <packaging>jar</packaging> 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 <parent> 14 <groupId>org.antlr</groupId> 15 <artifactId>antlr-master</artifactId> 16 <version>3.4</version> 17 </parent> 18 19 20 <name>Antlr 3.4 Runtime</name> 21 22 <description>A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.</description> 23 <url>http://www.antlr.org</url> 24 <developers> 25 <developer> 26 <name>Terence Parr</name> 27 <organization>USFCA</organization> 28 <organizationUrl>http://www.cs.usfca.edu</organizationUrl> 29 <email>parrt (a] antlr.org</email> 30 <roles> 31 <role>Project Leader</role> 32 <role>Developer - Java Target</role> 33 </roles> 34 <timezone>PST</timezone> 35 </developer> 36 <developer> 37 <name>Jim Idle</name> 38 <organization>Temporal Wave LLC</organization> 39 <organizationUrl>http://www.temporal-wave.com</organizationUrl> 40 <email>jimi (a] temporal-wave.com</email> 41 <roles> 42 <role>Developer - Maven stuff</role> 43 <role>Developer - C Target</role> 44 </roles> 45 <timezone>PST</timezone> 46 </developer> 47 </developers> 48 49 <scm> 50 <url>http://fisheye2.cenqua.com/browse/antlr</url> 51 <connection>http://fisheye2.cenqua.com/browse/antlr</connection> 52 </scm> 53 54 <dependencies> 55 56 <dependency> 57 <groupId>org.antlr</groupId> 58 <artifactId>stringtemplate</artifactId> 59 <version>3.2.1</version> 60 <scope>compile</scope> 61 </dependency> 62 63 64 <dependency> 65 <groupId>antlr</groupId> 66 <artifactId>antlr</artifactId> 67 <version>2.7.7</version> 68 <scope>compile</scope> 69 </dependency> 70 71 </dependencies> 72 73 <build> 74 <defaultGoal>install</defaultGoal> 75 <plugins> 76 <plugin> 77 <artifactId>maven-compiler-plugin</artifactId> 78 <version>2.0.2</version> 79 <configuration> 80 <source>1.6</source> 81 <target>jsr14</target> 82 </configuration> 83 </plugin> 84 <plugin> 85 <groupId>org.codehaus.mojo</groupId> 86 <artifactId>findbugs-maven-plugin</artifactId> 87 <version>2.3.2</version> 88 <configuration> 89 <findbugsXmlOutput>true</findbugsXmlOutput> 90 <findbugsXmlWithMessages>true</findbugsXmlWithMessages> 91 <xmlOutput>true</xmlOutput> 92 </configuration> 93 </plugin> 94 </plugins> 95 </build> 96 </project> 97