Fix breadcrumbs Add goals to create and/or deploy all sites git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@382568 13f79535-47bb-0310-9956-ffa450edef68
128 lines
3.7 KiB
XML
128 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2005 The Apache Software Foundation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
-->
|
|
|
|
|
|
<project>
|
|
<pomVersion>3</pomVersion>
|
|
<id>test-maven-ant-plugin</id>
|
|
<name>Test project for Maven Ant</name>
|
|
<groupId>maven</groupId>
|
|
<currentVersion>1.0-SNAPSHOT</currentVersion>
|
|
<organization>
|
|
<name>Apache Software Foundation</name>
|
|
<url>http://www.apache.org/</url>
|
|
<logo>http://maven.apache.org/images/jakarta-logo-blue.gif</logo>
|
|
</organization>
|
|
<inceptionYear>2001</inceptionYear>
|
|
<package>org.apache.maven</package>
|
|
<logo>http://maven.apache.org/images/maven.jpg</logo>
|
|
<description>Test for Maven Ant plugin</description>
|
|
<shortDescription>Test for Maven Ant plugin</shortDescription>
|
|
<url>http://maven.apache.org/maven-1.x/plugins/ant/</url>
|
|
<siteDirectory>/www/maven.apache.org/maven-1.x/plugins/ant/</siteDirectory>
|
|
<repository>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk/ant/</connection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/ant/</url>
|
|
</repository>
|
|
<developers>
|
|
<developer>
|
|
<name>dIon Gillard</name>
|
|
<id>dion</id>
|
|
<email>dion@multitask.com.au</email>
|
|
<organization>Multitask Consulting</organization>
|
|
<roles>
|
|
<role>Documentation</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
<!-- Used in testing maven.jar.override -->
|
|
<dependency>
|
|
<groupId>activation</groupId>
|
|
<artifactId>activation</artifactId>
|
|
<version>1.0.2</version>
|
|
<type>jar</type>
|
|
<properties/>
|
|
</dependency>
|
|
<!-- Used to test -->
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0.4</version>
|
|
<type>jar</type>
|
|
<properties/>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<properties>
|
|
<classloader>root</classloader>
|
|
</properties>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src/main</sourceDirectory>
|
|
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
|
|
|
|
<unitTest>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
<!-- unit test resources -->
|
|
<resources>
|
|
<resource>
|
|
<directory>src/testdata-1</directory>
|
|
<targetPath>directory-1</targetPath>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
</resource>
|
|
|
|
<resource>
|
|
<directory>src/testdata-2</directory>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</unitTest>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/data-1</directory>
|
|
<targetPath>directory-1</targetPath>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
</resource>
|
|
|
|
<resource>
|
|
<directory>src/data-2</directory>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|