mirror of https://github.com/apache/maven.git
29 lines
954 B
XML
29 lines
954 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</artifactId>
|
|
<groupId>org.apache.maven</groupId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>maven-site</artifactId>
|
|
<name>Maven</name>
|
|
<url>http://maven.apache.org/maven2</url>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<distributionManagement>
|
|
<site>
|
|
<id>website</id>
|
|
<url>scp://minotaur.apache.org/www/maven.apache.org/maven2</url>
|
|
</site>
|
|
</distributionManagement>
|
|
<reporting>
|
|
<!-- TODO: disable dependencies -->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|