Home | History | Annotate | Download | only in antlr3-maven-archetype
      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/xsd/maven-4.0.0.xsd">
      3 
      4     
      5     <modelVersion>4.0.0</modelVersion>
      6     <groupId>org.antlr</groupId>
      7     <artifactId>antlr3-maven-archetype</artifactId>
      8     <packaging>maven-archetype</packaging>
      9     <name>ANTLR 3 Maven Archetype</name>
     10     <description>ANTLR 3 Maven Archetype</description>
     11     
     12 
     13     <!--
     14 
     15     Inherit from the ANTLR master pom, which tells us what
     16     version we are and allows us to inherit dependencies
     17     and so on.
     18     -->
     19     <parent>
     20         <groupId>org.antlr</groupId>
     21         <artifactId>antlr-master</artifactId>
     22         <version>3.5.2</version>
     23     </parent>
     24 
     25   <build>
     26 
     27     <extensions>
     28 
     29       <extension>
     30         <groupId>org.apache.maven.archetype</groupId>
     31         <artifactId>archetype-packaging</artifactId>
     32         <version>2.2</version>
     33       </extension>
     34 
     35     </extensions>
     36 
     37         <plugins>
     38 
     39             <plugin>
     40                 <artifactId>maven-archetype-plugin</artifactId>
     41                 <version>2.2</version>
     42                 <extensions>true</extensions>
     43             </plugin>
     44 
     45         </plugins>
     46 
     47   </build>
     48 
     49 </project>
     50