• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
10    Inherit from the ANTLR master pom, which tells us what
11    version we are and allows us to inherit dependencies
12    and so on.
13
14    -->
15  <parent>
16      <groupId>org.antlr</groupId>
17      <artifactId>antlr-master</artifactId>
18      <version>3.5.2</version>
19      <relativePath>../..</relativePath>
20  </parent>
21
22  <name>ANTLR 3 Runtime</name>
23
24  <description>A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.</description>
25  <url>http://www.antlr.org</url>
26      <developers>
27        <developer>
28            <name>Terence Parr</name>
29            <organization>USFCA</organization>
30            <organizationUrl>http://www.cs.usfca.edu</organizationUrl>
31            <email>parrt@antlr.org</email>
32            <roles>
33                <role>Project Leader</role>
34                <role>Developer - Java Target</role>
35            </roles>
36            <timezone>PST</timezone>
37        </developer>
38        <developer>
39            <name>Jim Idle</name>
40            <organization>Temporal Wave LLC</organization>
41            <organizationUrl>http://www.temporal-wave.com</organizationUrl>
42            <email>jimi@temporal-wave.com</email>
43            <roles>
44                <role>Developer - Maven stuff</role>
45                <role>Developer - C Target</role>
46            </roles>
47            <timezone>PST</timezone>
48        </developer>
49    </developers>
50
51  <dependencies>
52
53    <dependency>
54      <groupId>org.antlr</groupId>
55      <artifactId>stringtemplate</artifactId>
56      <scope>compile</scope>
57      <optional>true</optional>
58    </dependency>
59
60    <dependency>
61      <groupId>junit</groupId>
62      <artifactId>junit</artifactId>
63    </dependency>
64
65  </dependencies>
66
67</project>
68