mirror of https://github.com/apache/maven.git
35 lines
971 B
XML
35 lines
971 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>maven</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<type>plugin</type>
|
|
<name>Maven Compiler Plugin</name>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<package>org.apache.maven</package>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus</artifactId>
|
|
<version>0.17</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-api</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-javac</artifactId>
|
|
<version>1.2-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|