mirror of https://github.com/apache/maven.git
67 lines
2.0 KiB
XML
67 lines
2.0 KiB
XML
<project>
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-4-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>Maven Compiler Plugin</name>
|
|
<version>2.0-beta-2-SNAPSHOT</version>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-javac</artifactId>
|
|
<version>1.5</version>
|
|
<scope>runtime</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-artifact</artifactId>
|
|
<version>2.0-beta-4-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-manager</artifactId>
|
|
<version>1.5</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-api</artifactId>
|
|
<version>1.5</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|