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/06/29 19:59:33 UTC

cvs commit: maven/src/plugins-build/jellydoc/xdocs changes.xml

dion        2003/06/29 10:59:33

  Modified:    src/plugins-build/jellydoc project.xml plugin.jelly
  Added:       src/plugins-build/jellydoc/xdocs changes.xml
  Log:
  Remove ${basedir} from pom.build.sourceDirectory
  
  Revision  Changes    Path
  1.11      +10 -1     maven/src/plugins-build/jellydoc/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jellydoc/project.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- project.xml	9 Apr 2003 01:06:46 -0000	1.10
  +++ project.xml	29 Jun 2003 17:59:32 -0000	1.11
  @@ -5,7 +5,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-jellydoc-plugin</id>
     <name>Maven JellyDoc Plug-in</name>
  -  <currentVersion>1.0</currentVersion>
  +  <currentVersion>1.1-SNAPSHOT</currentVersion>
     <!-- Gump integration -->
   
     <gumpRepositoryId>jakarta</gumpRepositoryId>
  @@ -23,6 +23,15 @@
         <id>jstrachan</id>
         <email>jstrachan@apache.org</email>
         <organization>SpiritSoft, Inc.</organization>
  +      <roles>
  +        <role>Java Developer</role>
  +      </roles>
  +    </developer>
  +    <developer>
  +      <name>dIon Gillard</name>
  +      <id>dion</id>
  +      <email>dion@apache.org</email>
  +      <organization>Apache Software Foundation</organization>
         <roles>
           <role>Java Developer</role>
         </roles>
  
  
  
  1.12      +3 -3      maven/src/plugins-build/jellydoc/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jellydoc/plugin.jelly,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- plugin.jelly	30 Mar 2003 23:29:45 -0000	1.11
  +++ plugin.jelly	29 Jun 2003 17:59:32 -0000	1.12
  @@ -56,10 +56,10 @@
   
       <ant:mkdir dir="target"/>
   
  -    <ant:echo>Source directory is ${basedir}/${pom.build.sourceDirectory}</ant:echo>
  +    <ant:echo>Source directory is ${pom.build.sourceDirectory}</ant:echo>
   
       <ant:javadoc
  -      sourcepath="${basedir}/${pom.build.sourceDirectory}"
  +      sourcepath="${pom.build.sourceDirectory}"
         packagenames="${maven.jellydoc.packages}"
         classpathref="doclet.classpath"
         docletpathref="doclet.classpath"
  @@ -75,7 +75,7 @@
       description="Creates an XML representation of the doclet information">
   
       <ant:javadoc
  -      sourcepath="${basedir}/${pom.build.sourceDirectory}"
  +      sourcepath="${pom.build.sourceDirectory}"
         packagenames="${pom.package}.*"
         classpathref="doclet.classpath"
         docletpathref="doclet.classpath"
  
  
  
  1.1                  maven/src/plugins-build/jellydoc/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
    <properties>
      <title>Changes</title>
      <author email="dion@multitask.com.au">dIon Gillard</author>
      <author email="kschrader@karmalab.org">Kurt Schrader</author>
    </properties>
  
    <body>
  
      <release version="1.1" date="In CVS">
        <action dev="dion" type="fix">
          Change use of pom.build.sourceDirectory to not include the basedir. This must be placed in the pom
          if a ${basedir} prefix is required.
        </action>
      </release>
      <release version="1.0" date="Unknown">
      </release>
      
    </body>
  </document>
  
  

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