You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/09/22 03:14:22 UTC

cvs commit: maven/src/plugins-build/checkstyle/src/plugin-test/src/main/org/apache/maven Dummy.java

dion        2003/09/21 18:14:22

  Added:       src/plugins-build/checkstyle/src/plugin-test .cvsignore
                        maven.xml LICENSE.txt project.xml
               src/plugins-build/checkstyle/src/plugin-test/src/main/org/apache/maven
                        Dummy.java
  Removed:     src/plugins-build/checkstyle/src/test/plugin-test
                        LICENSE.txt project.xml maven.xml .cvsignore
               src/plugins-build/checkstyle/src/test/plugin-test/src/main/org/apache/maven
                        Dummy.java
  Log:
  Change location of plugin test projects for Vincent
  
  Revision  Changes    Path
  1.1                  maven/src/plugins-build/checkstyle/src/plugin-test/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  gump.xml
  *.log
  
  
  
  1.1                  maven/src/plugins-build/checkstyle/src/plugin-test/maven.xml
  
  Index: maven.xml
  ===================================================================
  <project xmlns:util="jelly:util"
           xmlns:j="jelly:core">
           
    <goal name="testPlugin" prereqs="test-checkstyle-report">
      <attainGoal name="clean"/>
    </goal>
    
    <goal name="test-checkstyle-report">
      <!-- work around maven checkstyle being inherited :( -->
      <j:set var="maven.checkstyle.properties" value=""/>
      <attainGoal name="checkstyle:report"/>
      <j:set var="expectedFile" value="${maven.gen.docs}/checkstyle-report.xml"/>
      <util:file var="file" name="${expectedFile}" />
      <j:if test="${!(file.exists())}">
        <fail>${expectedFile} not generated</fail>
      </j:if>
    </goal>
  </project>
  
  
  1.1                  maven/src/plugins-build/checkstyle/src/plugin-test/LICENSE.txt
  
  	<<Binary file>>
  
  
  1.1                  maven/src/plugins-build/checkstyle/src/plugin-test/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project>
    <pomVersion>3</pomVersion>
    <id>test-maven-checkstyle-plugin</id>
    <name>Test project for Maven Checkstyle 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 Checkstyle plugin</description>
    <shortDescription>Test for Maven Checkstyle plugin</shortDescription>
    <url>http://maven.apache.org/reference/plugins/checkstyle/</url>
    <siteDirectory>/www/maven.apache.org/reference/plugins/checkstyle/</siteDirectory>
    <repository>
      <connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven/src/plugins-build/checkstyle/</connection>
      <url>http://cvs.apache.org/viewcvs/maven/src/plugins-build/checkstyle/</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>
      <sourceDirectory>src/main</sourceDirectory>
    </build>
  </project>
  
  
  
  1.1                  maven/src/plugins-build/checkstyle/src/plugin-test/src/main/org/apache/maven/Dummy.java
  
  Index: Dummy.java
  ===================================================================
  package org.apache.maven;
  
  public class Dummy
  {
      public String badChecky = "error";
  } 
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org