Home | History | Annotate | Download | only in 1.0.2
      1 <?xml version='1.0' encoding='UTF-8'?>
      2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      3     <modelVersion>4.0.0</modelVersion>
      4     <groupId>org.parboiled</groupId>
      5     <artifactId>parboiled-java</artifactId>
      6     <packaging>jar</packaging>
      7     <version>1.0.2</version>
      8     <url>http://parboiled.org/</url>
      9     <inceptionYear>2009</inceptionYear>
     10     <licenses>
     11         <license>
     12             <name>Apache 2</name>
     13             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     14             <distribution>repo</distribution>
     15         </license>
     16     </licenses>
     17     <developers>
     18         <developer>
     19             <id>sirthias</id>
     20             <name>Mathias Doenitz</name>
     21             <timezone>+1</timezone>
     22             <email>mathias [at] parboiled.org</email>
     23         </developer>
     24     </developers>
     25     <scm>
     26         <url>http://github.com/sirthias/parboiled/</url>
     27     </scm>
     28     <dependencies>
     29         <dependency>
     30             <groupId>asm</groupId>
     31             <artifactId>asm</artifactId>
     32             <version>3.3.1</version>
     33             <scope>compile</scope>
     34         </dependency>
     35         <dependency>
     36             <groupId>asm</groupId>
     37             <artifactId>asm-util</artifactId>
     38             <version>3.3.1</version>
     39             <scope>compile</scope>
     40         </dependency>
     41         <dependency>
     42             <groupId>asm</groupId>
     43             <artifactId>asm-tree</artifactId>
     44             <version>3.3.1</version>
     45             <scope>compile</scope>
     46         </dependency>
     47         <dependency>
     48             <groupId>asm</groupId>
     49             <artifactId>asm-analysis</artifactId>
     50             <version>3.3.1</version>
     51             <scope>compile</scope>
     52         </dependency>
     53         <dependency>
     54             <groupId>org.parboiled</groupId>
     55             <artifactId>parboiled-core</artifactId>
     56             <version>1.0.2</version>
     57             <scope>compile</scope>
     58         </dependency>
     59     </dependencies>
     60     <repositories>
     61         <repository>
     62             <id>ScalaToolsMaven2Repository</id>
     63             <name>Scala-Tools Maven2 Repository</name>
     64             <url>http://scala-tools.org/repo-releases/</url>
     65         </repository>
     66     </repositories>
     67 </project>