2005-07-21 09:58:42 -04:00
|
|
|
<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">
|
2005-04-13 01:25:25 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2005-09-20 22:31:13 -04:00
|
|
|
<version>2.0-beta-1</version>
|
2005-04-13 01:25:25 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-04-22 23:12:07 -04:00
|
|
|
<artifactId>maven-site</artifactId>
|
2005-04-13 01:25:25 -04:00
|
|
|
<name>Maven</name>
|
2005-05-12 03:22:40 -04:00
|
|
|
<url>http://maven.apache.org/maven2</url>
|
2005-04-13 01:25:25 -04:00
|
|
|
<inceptionYear>2001</inceptionYear>
|
|
|
|
<distributionManagement>
|
2005-10-06 15:01:19 -04:00
|
|
|
<!--
|
2005-04-13 01:25:25 -04:00
|
|
|
<site>
|
|
|
|
<id>website</id>
|
2005-05-12 02:51:55 -04:00
|
|
|
<url>scp://minotaur.apache.org/www/maven.apache.org/maven2</url>
|
2005-04-13 01:25:25 -04:00
|
|
|
</site>
|
2005-10-06 15:01:19 -04:00
|
|
|
-->
|
|
|
|
<site>
|
|
|
|
<id>website</id>
|
|
|
|
<url>scp://minotaur.apache.org/x1/home/jvanzyl/public_html/maven2</url>
|
|
|
|
</site>
|
2005-04-13 01:25:25 -04:00
|
|
|
</distributionManagement>
|
2005-06-23 03:40:37 -04:00
|
|
|
<reporting>
|
2005-09-25 19:28:02 -04:00
|
|
|
<excludeDefaults>true</excludeDefaults>
|
2005-06-23 03:40:37 -04:00
|
|
|
<!-- TODO: disable dependencies -->
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2005-10-07 09:51:03 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2005-06-23 03:40:37 -04:00
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2005-08-17 07:31:31 -04:00
|
|
|
<!-- repeated here so that maven-site is not appended -->
|
|
|
|
<scm>
|
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/trunk/</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/trunk/</developerConnection>
|
|
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven/components/trunk/</url>
|
|
|
|
</scm>
|
2005-04-13 01:25:25 -04:00
|
|
|
</project>
|