git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@116173 13f79535-47bb-0310-9956-ffa450edef68
98 lines
3.3 KiB
XML
98 lines
3.3 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!--
|
|
|
|
Copyright 2004 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>
|
|
<!--extend>${basedir}/../../etc/project.xml</extend-->
|
|
|
|
<id>maven-itest-plugin</id>
|
|
<name>Maven Integration Test Plug-in</name>
|
|
<currentVersion>1.0</currentVersion>
|
|
<description>Run JUnit tests on artifacts such as jars, ejbs, wars, ears.</description>
|
|
<shortDescription>Run JUnit integration tests</shortDescription>
|
|
<url>http://maven.apache.org/reference/plugins/itest/</url>
|
|
<issueTrackingUrl>http://jira.codehaus.org/browse/MPTEST</issueTrackingUrl>
|
|
<siteDirectory>/www/maven.apache.org/reference/plugins/itest/</siteDirectory>
|
|
<url>http://maven.apache.org/reference/plugins/itest/</url>
|
|
<issueTrackingUrl>http://jira.codehaus.org/browse/MPTEST</issueTrackingUrl>
|
|
<siteDirectory>/www/maven.apache.org/reference/plugins/itest/</siteDirectory>
|
|
<repository>
|
|
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/test/</connection>
|
|
<developerConnection>scm:cvs:ext:${maven.username}@cvs.apache.org:/home/cvs:maven-plugins/itest/</developerConnection>
|
|
<url>http://cvs.apache.org/viewcvs/maven-plugins/itest/</url>
|
|
</repository>
|
|
<versions>
|
|
<version>
|
|
<id>1.0</id>
|
|
<name>1.0</name>
|
|
<tag>MAVEN_ITEST_1_0</tag>
|
|
</version>
|
|
</versions>
|
|
<developers>
|
|
<developer>
|
|
<name>Dain Sundstrom</name>
|
|
<id>dain</id>
|
|
<email>dsundstrom@gluecode.com</email>
|
|
<organization>Gluecode</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>David Blevins</name>
|
|
<id>dblevins</id>
|
|
<email>dblevins@gluecode.com</email>
|
|
<organization>Gluecode</organization>
|
|
</developer>
|
|
<developer>
|
|
<name>David Jencks</name>
|
|
<id>djencks</id>
|
|
<email>djencks@gluecode.com</email>
|
|
<organization>Gluecode</organization>
|
|
</developer>
|
|
</developers>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src/java</sourceDirectory>
|
|
<unitTestSourceDirectory></unitTestSourceDirectory>
|
|
|
|
<unitTest>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
</unitTest>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>.</directory>
|
|
<includes>
|
|
<include>plugin.jelly</include>
|
|
<include>plugin.properties</include>
|
|
<include>project.properties</include>
|
|
<include>project.xml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|