dion        2004/02/03 11:14:55

  Added:       eclipse/src/plugin-test project.xml maven.xml .cvsignore
  Log:
  2 legs, 2 arms, a head and a body check
  
  Revision  Changes    Path
  1.1                  maven-plugins/eclipse/src/plugin-test/project.xml
  
  Index: project.xml
  ===================================================================
  <?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:[EMAIL 
PROTECTED]:/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>[EMAIL PROTECTED]</email>
        <organization>Multitask Consulting</organization>
        <roles>
          <role>Documentation</role>
        </roles>
      </developer>
    </developers>
  
    <build>
    </build>
  </project>
  
  
  
  1.1                  maven-plugins/eclipse/src/plugin-test/maven.xml
  
  Index: maven.xml
  ===================================================================
  <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>
  
  
  1.1                  maven-plugins/eclipse/src/plugin-test/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  *.log
  .project
  .classpath
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to