2 legs, 2 arms, a head and a body check
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114672 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
3
eclipse/src/plugin-test/.cvsignore
Normal file
3
eclipse/src/plugin-test/.cvsignore
Normal file
@@ -0,0 +1,3 @@
|
||||
*.log
|
||||
.project
|
||||
.classpath
|
||||
21
eclipse/src/plugin-test/maven.xml
Normal file
21
eclipse/src/plugin-test/maven.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<project xmlns:j="jelly:core" xmlns:u="jelly:util">
|
||||
|
||||
<goal name="testPlugin" prereqs="test-eclipse">
|
||||
</goal>
|
||||
|
||||
<goal name="test-eclipse">
|
||||
<delete file="${basedir}/.project" failonerror="false"/>
|
||||
<delete file="${basedir}/.classpath" failonerror="false"/>
|
||||
<attainGoal name="eclipse"/>
|
||||
|
||||
<u:file var="expectedFile" name="${basedir}/.project"/>
|
||||
<j:if test="${!expectedFile.exists()}">
|
||||
<fail>${expectedFile} was not created</fail>
|
||||
</j:if>
|
||||
|
||||
<u:file var="expectedFile" name="${basedir}/.classpath"/>
|
||||
<j:if test="${!expectedFile.exists()}">
|
||||
<fail>${expectedFile} was not created</fail>
|
||||
</j:if>
|
||||
</goal>
|
||||
</project>
|
||||
39
eclipse/src/plugin-test/project.xml
Normal file
39
eclipse/src/plugin-test/project.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project>
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>test-maven-eclipse-plugin</id>
|
||||
<name>Test project for Maven Eclipse Plugin</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 Eclipse plugin</description>
|
||||
<shortDescription>Test for Maven Eclipse plugin</shortDescription>
|
||||
<url>http://maven.apache.org/reference/plugins/eclipse/</url>
|
||||
<siteDirectory>/www/maven.apache.org/reference/plugins/eclipse/</siteDirectory>
|
||||
<repository>
|
||||
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/eclipse/</connection>
|
||||
<url>http://cvs.apache.org/viewcvs/maven-plugins/eclipse/</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>
|
||||
|
||||
<build>
|
||||
</build>
|
||||
</project>
|
||||
Reference in New Issue
Block a user