antlr-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>antlr-maven-plugin</artifactId> <version>2.2</version> </dependency>
<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"> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>27</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>antlr-maven-plugin</artifactId> <version>2.2</version> <packaging>maven-plugin</packaging> <name>Maven ANTLR Plugin</name> <description>Maven Plugin for Antlr v2</description> <inceptionYear>2004</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <prerequisites> <maven>2.0.2</maven> </prerequisites> <!-- Different from the parent --> <scm> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/antlr-maven-plugin-2.2</connection> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/antlr-maven-plugin-2.2</developerConnection> <url>http://fisheye.codehaus.org/browse/mojo/tags/antlr-maven-plugin-2.2</url> </scm> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MANTLR</url> </issueManagement> <developers> <developer> <id>vsiveton</id> <name>Vincent Siveton</name> <email>vsiveton@apache.org</email> <organization>ASF</organization> <roles> <role>Java Developer</role> </roles> <timezone>-5</timezone> </developer> </developers> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0.2</version> <exclusions> <!-- Using org.codehaus.plexus:plexus-utils instead of --> <exclusion> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>2.0.2</version> <exclusions> <!-- Using org.codehaus.plexus:plexus-utils instead of --> <exclusion> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0.2</version> <exclusions> <!-- Using org.codehaus.plexus:plexus-utils instead of --> <exclusion> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-i18n</artifactId> <version>1.0-beta-6</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.4.1</version> </dependency> <!-- For Maven 2.0.2 --> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> <version>1.0-beta-1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <version>1.0-alpha-8</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <version>1.0.0</version> <model>src/main/mdo/antlrOptions.mdo</model> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>run-its</id> <activation> <property> <name>maven.test.skip</name> <value>!true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.3</version> <configuration> <debug>true</debug> <cloneProjectsTo>target/it</cloneProjectsTo> <projectsDirectory>src/it</projectsDirectory> <pomIncludes> <pomInclude>**/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript>verify.bsh</postBuildHookScript> <goals> <goal>site</goal> </goals> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> </configuration> <executions> <execution> <id>integration-test</id> <phase>integration-test</phase> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>