mirror of https://github.com/apache/maven.git
27 lines
949 B
XML
27 lines
949 B
XML
<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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>maven-plugin-parent</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>2.0-beta-1-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-1-SNAPSHOT</version>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-api</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>plexus</groupId>
|
|
<artifactId>plexus-compiler-javac</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|