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 2004/06/29 15:43:16 UTC

cvs commit: maven-plugins/java project.xml

dion        2004/06/29 06:43:16

  Modified:    java/xdocs changes.xml
               java/src/plugin-test maven.xml
               java     project.xml
  Log:
  Use assert taglib in plugin test
  
  Revision  Changes    Path
  1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- changes.xml	16 May 2004 01:08:45 -0000	1.11
  +++ changes.xml	29 Jun 2004 13:43:16 -0000	1.12
  @@ -25,6 +25,9 @@
       <author email="kschrader@karmalab.org">Kurt Schrader</author>
     </properties>
     <body>
  +    <release version="1.5-SNAPSHOT" date="in CVS">
  +      <action dev="dion" type="update">Use assert taglib for tests</action>
  +    </release>
       <release version="1.4" date="2004-05-15">
         <action dev="brett" type="fix" issue="MPJAVA-18" due-to="Lynn Richards">Allow specifying a JDK to compile with other than the running one</action>
         <action dev="brett" type="fix" issue="MPJAVA-1" due-to="Scott Foster">Add memory usage parameters to pass to the ant javac task</action>
  
  
  
  1.3       +2 -5      maven-plugins/java/src/plugin-test/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/src/plugin-test/maven.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- maven.xml	4 Mar 2004 18:35:34 -0000	1.2
  +++ maven.xml	29 Jun 2004 13:43:16 -0000	1.3
  @@ -16,6 +16,7 @@
    */
    -->
   <project xmlns:util="jelly:util"
  +         xmlns:assert="assert"
            xmlns:j="jelly:core">
            
     <goal name="testPlugin" prereqs="test-java-compile">
  @@ -25,10 +26,6 @@
     
     <goal name="test-java-compile">
       <attainGoal name="java:compile"/>
  -    <j:set var="expectedFile" value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
  -    <util:file var="file" name="${expectedFile}" />
  -    <j:if test="${!(file.exists())}">
  -      <fail>${expectedFile} not generated</fail>
  -    </j:if>
  +    <assert:assertFileExists file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
     </goal>
   </project>
  
  
  
  1.26      +1 -1      maven-plugins/java/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/project.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- project.xml	25 Jun 2004 15:24:28 -0000	1.25
  +++ project.xml	29 Jun 2004 13:43:16 -0000	1.26
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-java-plugin</id>
     <name>Maven Java Plug-in</name>
  -  <currentVersion>1.4</currentVersion>
  +  <currentVersion>1.5-SNAPSHOT</currentVersion>
     <description/>
     <shortDescription>Compile java code</shortDescription>
     <url>http://maven.apache.org/reference/plugins/java/</url>
  
  
  

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


Re: cvs commit: maven-plugins/java project.xml

Posted by Dion Gillard <di...@gmail.com>.
Oh well,

if we can come up with something consistent, I'm happy to follow it.

Brett? Anyone else?

On Wed, 30 Jun 2004 09:15:05 +0200, Vincent Massol <vm...@pivolis.com> wrote:
> 
> For the version number I agree completely with you...
> 
> I was just commenting on the usage of changes.xml
> 
> -Vincent
> 
> 
> 
> > -----Original Message-----
> > From: Dion Gillard [mailto:dion.gillard@gmail.com]
> > Sent: mercredi 30 juin 2004 08:34
> > To: Maven Developers List
> > Subject: Re: cvs commit: maven-plugins/java project.xml
> >
> > Sure, it just seems weird to me to have changed the source code, but
> > the project version number is unchanged.
> >
> > On Wed, 30 Jun 2004 07:45:31 +0200, Vincent Massol <vm...@pivolis.com>
> > wrote:
> > >
> > > Hi dIon,
> > >
> > > The changes.xml file is supposed to contain only user-visible changes
> > (i.e
> > > changes that interest the plugin users). For all other changes we have
> > the
> > > changelog report.
> > >
> > > Thanks
> > > -Vincent
> > >
> > >
> > >
> > > > -----Original Message-----
> > > > From: Dion Gillard [mailto:dion.gillard@gmail.com]
> > > > Sent: mercredi 30 juin 2004 06:29
> > > > To: Maven Developers List
> > > > Subject: Re: cvs commit: maven-plugins/java project.xml
> > > >
> > > > Done.
> > > >
> > > > I'm assuming from this that any changes to the plugin tests is not to
> > > > be recorded other than in the commit message, and that this includes
> > > > adding plugin test projects as well.
> > > >
> > > > Is this right?
> > > >
> > > > On Wed, 30 Jun 2004 12:05:35 +1000, Dion Gillard
> > <di...@gmail.com>
> > > > wrote:
> > > > >
> > > > > I'm happy to go back and remove them.
> > > > >
> > > > > Let me know if u want it done.
> > > > >
> > > > >
> > > > > On Wed, 30 Jun 2004 10:08:19 +1000, Brett Porter <br...@apache.org>
> > > > wrote:
> > > > > >
> > > > > > dIon,
> > > > > >
> > > > > > Bumping the version of the plugin because the test changed seems
> > > > backwards to
> > > > > > me. Isn't that why a plugin test has a project of its own?
> > > > > >
> > > > > > Probably likewise for the changes entry. I don't believe non-
> > > > functional changes
> > > > > > should go in changes.xml.
> > > > > >
> > > > > > Cheers,
> > > > > > Brett
> > > > > >
> > > > > >
> > > > > >
> > > > > > Quoting dion@apache.org:
> > > > > >
> > > > > > > dion        2004/06/29 06:43:16
> > > > > > >
> > > > > > >   Modified:    java/xdocs changes.xml
> > > > > > >                java/src/plugin-test maven.xml
> > > > > > >                java     project.xml
> > > > > > >   Log:
> > > > > > >   Use assert taglib in plugin test
> > > > > > >
> > > > > > >   Revision  Changes    Path
> > > > > > >   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
> > > > > > >
> > > > > > >   Index: changes.xml
> > > > > > >
> > > > ===================================================================
> > > > > > >   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
> > > > > > >   retrieving revision 1.11
> > > > > > >   retrieving revision 1.12
> > > > > > >   diff -u -r1.11 -r1.12
> > > > > > >   --- changes.xml     16 May 2004 01:08:45 -0000      1.11
> > > > > > >   +++ changes.xml     29 Jun 2004 13:43:16 -0000      1.12
> > > > > > >   @@ -25,6 +25,9 @@
> > > > > > >        <author email="kschrader@karmalab.org">Kurt
> > Schrader</author>
> > > > > > >      </properties>
> > > > > > >      <body>
> > > > > > >   +    <release version="1.5-SNAPSHOT" date="in CVS">
> > > > > > >   +      <action dev="dion" type="update">Use assert taglib for
> > > > > > > tests</action>
> > > > > > >   +    </release>
> > > > > > >        <release version="1.4" date="2004-05-15">
> > > > > > >          <action dev="brett" type="fix" issue="MPJAVA-18" due-
> > > > to="Lynn
> > > > > > > Richards">Allow specifying a JDK to compile with other than the
> > > > running
> > > > > > > one</action>
> > > > > > >          <action dev="brett" type="fix" issue="MPJAVA-1" due-
> > > > to="Scott
> > > > > > > Foster">Add memory usage parameters to pass to the ant javac
> > > > task</action>
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >   1.3       +2 -5      maven-plugins/java/src/plugin-
> > test/maven.xml
> > > > > > >
> > > > > > >   Index: maven.xml
> > > > > > >
> > > > ===================================================================
> > > > > > >   RCS file: /home/cvs/maven-plugins/java/src/plugin-
> > test/maven.xml,v
> > > > > > >   retrieving revision 1.2
> > > > > > >   retrieving revision 1.3
> > > > > > >   diff -u -r1.2 -r1.3
> > > > > > >   --- maven.xml       4 Mar 2004 18:35:34 -0000       1.2
> > > > > > >   +++ maven.xml       29 Jun 2004 13:43:16 -0000      1.3
> > > > > > >   @@ -16,6 +16,7 @@
> > > > > > >     */
> > > > > > >     -->
> > > > > > >    <project xmlns:util="jelly:util"
> > > > > > >   +         xmlns:assert="assert"
> > > > > > >             xmlns:j="jelly:core">
> > > > > > >
> > > > > > >      <goal name="testPlugin" prereqs="test-java-compile">
> > > > > > >   @@ -25,10 +26,6 @@
> > > > > > >
> > > > > > >      <goal name="test-java-compile">
> > > > > > >        <attainGoal name="java:compile"/>
> > > > > > >   -    <j:set var="expectedFile"
> > > > > > > value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > > > > >   -    <util:file var="file" name="${expectedFile}" />
> > > > > > >   -    <j:if test="${!(file.exists())}">
> > > > > > >   -      <fail>${expectedFile} not generated</fail>
> > > > > > >   -    </j:if>
> > > > > > >   +    <assert:assertFileExists
> > > > > > > file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > > > > >      </goal>
> > > > > > >    </project>
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >   1.26      +1 -1      maven-plugins/java/project.xml
> > > > > > >
> > > > > > >   Index: project.xml
> > > > > > >
> > > > ===================================================================
> > > > > > >   RCS file: /home/cvs/maven-plugins/java/project.xml,v
> > > > > > >   retrieving revision 1.25
> > > > > > >   retrieving revision 1.26
> > > > > > >   diff -u -r1.25 -r1.26
> > > > > > >   --- project.xml     25 Jun 2004 15:24:28 -0000      1.25
> > > > > > >   +++ project.xml     29 Jun 2004 13:43:16 -0000      1.26
> > > > > > >   @@ -23,7 +23,7 @@
> > > > > > >      <pomVersion>3</pomVersion>
> > > > > > >      <id>maven-java-plugin</id>
> > > > > > >      <name>Maven Java Plug-in</name>
> > > > > > >   -  <currentVersion>1.4</currentVersion>
> > > > > > >   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
> > > > > > >      <description/>
> > > > > > >      <shortDescription>Compile java code</shortDescription>
> > > > > > >      <url>http://maven.apache.org/reference/plugins/java/</url>
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > ----------------------------------------------------------------
> > ----
> > > > -
> > > > > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > > > > >
> > > > > >
> > > > > > ------------------------------------------------------------------
> > ---
> > > > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > > > >
> > > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: dev-help@maven.apache.org
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: dev-help@maven.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > For additional commands, e-mail: dev-help@maven.apache.org
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 
>

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


RE: cvs commit: maven-plugins/java project.xml

Posted by Vincent Massol <vm...@pivolis.com>.
For the version number I agree completely with you...

I was just commenting on the usage of changes.xml

-Vincent

> -----Original Message-----
> From: Dion Gillard [mailto:dion.gillard@gmail.com]
> Sent: mercredi 30 juin 2004 08:34
> To: Maven Developers List
> Subject: Re: cvs commit: maven-plugins/java project.xml
> 
> Sure, it just seems weird to me to have changed the source code, but
> the project version number is unchanged.
> 
> On Wed, 30 Jun 2004 07:45:31 +0200, Vincent Massol <vm...@pivolis.com>
> wrote:
> >
> > Hi dIon,
> >
> > The changes.xml file is supposed to contain only user-visible changes
> (i.e
> > changes that interest the plugin users). For all other changes we have
> the
> > changelog report.
> >
> > Thanks
> > -Vincent
> >
> >
> >
> > > -----Original Message-----
> > > From: Dion Gillard [mailto:dion.gillard@gmail.com]
> > > Sent: mercredi 30 juin 2004 06:29
> > > To: Maven Developers List
> > > Subject: Re: cvs commit: maven-plugins/java project.xml
> > >
> > > Done.
> > >
> > > I'm assuming from this that any changes to the plugin tests is not to
> > > be recorded other than in the commit message, and that this includes
> > > adding plugin test projects as well.
> > >
> > > Is this right?
> > >
> > > On Wed, 30 Jun 2004 12:05:35 +1000, Dion Gillard
> <di...@gmail.com>
> > > wrote:
> > > >
> > > > I'm happy to go back and remove them.
> > > >
> > > > Let me know if u want it done.
> > > >
> > > >
> > > > On Wed, 30 Jun 2004 10:08:19 +1000, Brett Porter <br...@apache.org>
> > > wrote:
> > > > >
> > > > > dIon,
> > > > >
> > > > > Bumping the version of the plugin because the test changed seems
> > > backwards to
> > > > > me. Isn't that why a plugin test has a project of its own?
> > > > >
> > > > > Probably likewise for the changes entry. I don't believe non-
> > > functional changes
> > > > > should go in changes.xml.
> > > > >
> > > > > Cheers,
> > > > > Brett
> > > > >
> > > > >
> > > > >
> > > > > Quoting dion@apache.org:
> > > > >
> > > > > > dion        2004/06/29 06:43:16
> > > > > >
> > > > > >   Modified:    java/xdocs changes.xml
> > > > > >                java/src/plugin-test maven.xml
> > > > > >                java     project.xml
> > > > > >   Log:
> > > > > >   Use assert taglib in plugin test
> > > > > >
> > > > > >   Revision  Changes    Path
> > > > > >   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
> > > > > >
> > > > > >   Index: changes.xml
> > > > > >
> > > ===================================================================
> > > > > >   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
> > > > > >   retrieving revision 1.11
> > > > > >   retrieving revision 1.12
> > > > > >   diff -u -r1.11 -r1.12
> > > > > >   --- changes.xml     16 May 2004 01:08:45 -0000      1.11
> > > > > >   +++ changes.xml     29 Jun 2004 13:43:16 -0000      1.12
> > > > > >   @@ -25,6 +25,9 @@
> > > > > >        <author email="kschrader@karmalab.org">Kurt
> Schrader</author>
> > > > > >      </properties>
> > > > > >      <body>
> > > > > >   +    <release version="1.5-SNAPSHOT" date="in CVS">
> > > > > >   +      <action dev="dion" type="update">Use assert taglib for
> > > > > > tests</action>
> > > > > >   +    </release>
> > > > > >        <release version="1.4" date="2004-05-15">
> > > > > >          <action dev="brett" type="fix" issue="MPJAVA-18" due-
> > > to="Lynn
> > > > > > Richards">Allow specifying a JDK to compile with other than the
> > > running
> > > > > > one</action>
> > > > > >          <action dev="brett" type="fix" issue="MPJAVA-1" due-
> > > to="Scott
> > > > > > Foster">Add memory usage parameters to pass to the ant javac
> > > task</action>
> > > > > >
> > > > > >
> > > > > >
> > > > > >   1.3       +2 -5      maven-plugins/java/src/plugin-
> test/maven.xml
> > > > > >
> > > > > >   Index: maven.xml
> > > > > >
> > > ===================================================================
> > > > > >   RCS file: /home/cvs/maven-plugins/java/src/plugin-
> test/maven.xml,v
> > > > > >   retrieving revision 1.2
> > > > > >   retrieving revision 1.3
> > > > > >   diff -u -r1.2 -r1.3
> > > > > >   --- maven.xml       4 Mar 2004 18:35:34 -0000       1.2
> > > > > >   +++ maven.xml       29 Jun 2004 13:43:16 -0000      1.3
> > > > > >   @@ -16,6 +16,7 @@
> > > > > >     */
> > > > > >     -->
> > > > > >    <project xmlns:util="jelly:util"
> > > > > >   +         xmlns:assert="assert"
> > > > > >             xmlns:j="jelly:core">
> > > > > >
> > > > > >      <goal name="testPlugin" prereqs="test-java-compile">
> > > > > >   @@ -25,10 +26,6 @@
> > > > > >
> > > > > >      <goal name="test-java-compile">
> > > > > >        <attainGoal name="java:compile"/>
> > > > > >   -    <j:set var="expectedFile"
> > > > > > value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > > > >   -    <util:file var="file" name="${expectedFile}" />
> > > > > >   -    <j:if test="${!(file.exists())}">
> > > > > >   -      <fail>${expectedFile} not generated</fail>
> > > > > >   -    </j:if>
> > > > > >   +    <assert:assertFileExists
> > > > > > file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > > > >      </goal>
> > > > > >    </project>
> > > > > >
> > > > > >
> > > > > >
> > > > > >   1.26      +1 -1      maven-plugins/java/project.xml
> > > > > >
> > > > > >   Index: project.xml
> > > > > >
> > > ===================================================================
> > > > > >   RCS file: /home/cvs/maven-plugins/java/project.xml,v
> > > > > >   retrieving revision 1.25
> > > > > >   retrieving revision 1.26
> > > > > >   diff -u -r1.25 -r1.26
> > > > > >   --- project.xml     25 Jun 2004 15:24:28 -0000      1.25
> > > > > >   +++ project.xml     29 Jun 2004 13:43:16 -0000      1.26
> > > > > >   @@ -23,7 +23,7 @@
> > > > > >      <pomVersion>3</pomVersion>
> > > > > >      <id>maven-java-plugin</id>
> > > > > >      <name>Maven Java Plug-in</name>
> > > > > >   -  <currentVersion>1.4</currentVersion>
> > > > > >   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
> > > > > >      <description/>
> > > > > >      <shortDescription>Compile java code</shortDescription>
> > > > > >      <url>http://maven.apache.org/reference/plugins/java/</url>
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > ----------------------------------------------------------------
> ----
> > > -
> > > > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > > > >
> > > > >
> > > > > ------------------------------------------------------------------
> ---
> > > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > > >
> > > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: dev-help@maven.apache.org
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > For additional commands, e-mail: dev-help@maven.apache.org
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org



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


Re: cvs commit: maven-plugins/java project.xml

Posted by Dion Gillard <di...@gmail.com>.
Sure, it just seems weird to me to have changed the source code, but
the project version number is unchanged.

On Wed, 30 Jun 2004 07:45:31 +0200, Vincent Massol <vm...@pivolis.com> wrote:
> 
> Hi dIon,
> 
> The changes.xml file is supposed to contain only user-visible changes (i.e
> changes that interest the plugin users). For all other changes we have the
> changelog report.
> 
> Thanks
> -Vincent
> 
> 
> 
> > -----Original Message-----
> > From: Dion Gillard [mailto:dion.gillard@gmail.com]
> > Sent: mercredi 30 juin 2004 06:29
> > To: Maven Developers List
> > Subject: Re: cvs commit: maven-plugins/java project.xml
> >
> > Done.
> >
> > I'm assuming from this that any changes to the plugin tests is not to
> > be recorded other than in the commit message, and that this includes
> > adding plugin test projects as well.
> >
> > Is this right?
> >
> > On Wed, 30 Jun 2004 12:05:35 +1000, Dion Gillard <di...@gmail.com>
> > wrote:
> > >
> > > I'm happy to go back and remove them.
> > >
> > > Let me know if u want it done.
> > >
> > >
> > > On Wed, 30 Jun 2004 10:08:19 +1000, Brett Porter <br...@apache.org>
> > wrote:
> > > >
> > > > dIon,
> > > >
> > > > Bumping the version of the plugin because the test changed seems
> > backwards to
> > > > me. Isn't that why a plugin test has a project of its own?
> > > >
> > > > Probably likewise for the changes entry. I don't believe non-
> > functional changes
> > > > should go in changes.xml.
> > > >
> > > > Cheers,
> > > > Brett
> > > >
> > > >
> > > >
> > > > Quoting dion@apache.org:
> > > >
> > > > > dion        2004/06/29 06:43:16
> > > > >
> > > > >   Modified:    java/xdocs changes.xml
> > > > >                java/src/plugin-test maven.xml
> > > > >                java     project.xml
> > > > >   Log:
> > > > >   Use assert taglib in plugin test
> > > > >
> > > > >   Revision  Changes    Path
> > > > >   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
> > > > >
> > > > >   Index: changes.xml
> > > > >
> > ===================================================================
> > > > >   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
> > > > >   retrieving revision 1.11
> > > > >   retrieving revision 1.12
> > > > >   diff -u -r1.11 -r1.12
> > > > >   --- changes.xml     16 May 2004 01:08:45 -0000      1.11
> > > > >   +++ changes.xml     29 Jun 2004 13:43:16 -0000      1.12
> > > > >   @@ -25,6 +25,9 @@
> > > > >        <author email="kschrader@karmalab.org">Kurt Schrader</author>
> > > > >      </properties>
> > > > >      <body>
> > > > >   +    <release version="1.5-SNAPSHOT" date="in CVS">
> > > > >   +      <action dev="dion" type="update">Use assert taglib for
> > > > > tests</action>
> > > > >   +    </release>
> > > > >        <release version="1.4" date="2004-05-15">
> > > > >          <action dev="brett" type="fix" issue="MPJAVA-18" due-
> > to="Lynn
> > > > > Richards">Allow specifying a JDK to compile with other than the
> > running
> > > > > one</action>
> > > > >          <action dev="brett" type="fix" issue="MPJAVA-1" due-
> > to="Scott
> > > > > Foster">Add memory usage parameters to pass to the ant javac
> > task</action>
> > > > >
> > > > >
> > > > >
> > > > >   1.3       +2 -5      maven-plugins/java/src/plugin-test/maven.xml
> > > > >
> > > > >   Index: maven.xml
> > > > >
> > ===================================================================
> > > > >   RCS file: /home/cvs/maven-plugins/java/src/plugin-test/maven.xml,v
> > > > >   retrieving revision 1.2
> > > > >   retrieving revision 1.3
> > > > >   diff -u -r1.2 -r1.3
> > > > >   --- maven.xml       4 Mar 2004 18:35:34 -0000       1.2
> > > > >   +++ maven.xml       29 Jun 2004 13:43:16 -0000      1.3
> > > > >   @@ -16,6 +16,7 @@
> > > > >     */
> > > > >     -->
> > > > >    <project xmlns:util="jelly:util"
> > > > >   +         xmlns:assert="assert"
> > > > >             xmlns:j="jelly:core">
> > > > >
> > > > >      <goal name="testPlugin" prereqs="test-java-compile">
> > > > >   @@ -25,10 +26,6 @@
> > > > >
> > > > >      <goal name="test-java-compile">
> > > > >        <attainGoal name="java:compile"/>
> > > > >   -    <j:set var="expectedFile"
> > > > > value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > > >   -    <util:file var="file" name="${expectedFile}" />
> > > > >   -    <j:if test="${!(file.exists())}">
> > > > >   -      <fail>${expectedFile} not generated</fail>
> > > > >   -    </j:if>
> > > > >   +    <assert:assertFileExists
> > > > > file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > > >      </goal>
> > > > >    </project>
> > > > >
> > > > >
> > > > >
> > > > >   1.26      +1 -1      maven-plugins/java/project.xml
> > > > >
> > > > >   Index: project.xml
> > > > >
> > ===================================================================
> > > > >   RCS file: /home/cvs/maven-plugins/java/project.xml,v
> > > > >   retrieving revision 1.25
> > > > >   retrieving revision 1.26
> > > > >   diff -u -r1.25 -r1.26
> > > > >   --- project.xml     25 Jun 2004 15:24:28 -0000      1.25
> > > > >   +++ project.xml     29 Jun 2004 13:43:16 -0000      1.26
> > > > >   @@ -23,7 +23,7 @@
> > > > >      <pomVersion>3</pomVersion>
> > > > >      <id>maven-java-plugin</id>
> > > > >      <name>Maven Java Plug-in</name>
> > > > >   -  <currentVersion>1.4</currentVersion>
> > > > >   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
> > > > >      <description/>
> > > > >      <shortDescription>Compile java code</shortDescription>
> > > > >      <url>http://maven.apache.org/reference/plugins/java/</url>
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --------------------------------------------------------------------
> > -
> > > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > >
> > > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > For additional commands, e-mail: dev-help@maven.apache.org
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 
>

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


RE: cvs commit: maven-plugins/java project.xml

Posted by Vincent Massol <vm...@pivolis.com>.
Hi dIon,

The changes.xml file is supposed to contain only user-visible changes (i.e
changes that interest the plugin users). For all other changes we have the
changelog report.

Thanks
-Vincent

> -----Original Message-----
> From: Dion Gillard [mailto:dion.gillard@gmail.com]
> Sent: mercredi 30 juin 2004 06:29
> To: Maven Developers List
> Subject: Re: cvs commit: maven-plugins/java project.xml
> 
> Done.
> 
> I'm assuming from this that any changes to the plugin tests is not to
> be recorded other than in the commit message, and that this includes
> adding plugin test projects as well.
> 
> Is this right?
> 
> On Wed, 30 Jun 2004 12:05:35 +1000, Dion Gillard <di...@gmail.com>
> wrote:
> >
> > I'm happy to go back and remove them.
> >
> > Let me know if u want it done.
> >
> >
> > On Wed, 30 Jun 2004 10:08:19 +1000, Brett Porter <br...@apache.org>
> wrote:
> > >
> > > dIon,
> > >
> > > Bumping the version of the plugin because the test changed seems
> backwards to
> > > me. Isn't that why a plugin test has a project of its own?
> > >
> > > Probably likewise for the changes entry. I don't believe non-
> functional changes
> > > should go in changes.xml.
> > >
> > > Cheers,
> > > Brett
> > >
> > >
> > >
> > > Quoting dion@apache.org:
> > >
> > > > dion        2004/06/29 06:43:16
> > > >
> > > >   Modified:    java/xdocs changes.xml
> > > >                java/src/plugin-test maven.xml
> > > >                java     project.xml
> > > >   Log:
> > > >   Use assert taglib in plugin test
> > > >
> > > >   Revision  Changes    Path
> > > >   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
> > > >
> > > >   Index: changes.xml
> > > >
> ===================================================================
> > > >   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
> > > >   retrieving revision 1.11
> > > >   retrieving revision 1.12
> > > >   diff -u -r1.11 -r1.12
> > > >   --- changes.xml     16 May 2004 01:08:45 -0000      1.11
> > > >   +++ changes.xml     29 Jun 2004 13:43:16 -0000      1.12
> > > >   @@ -25,6 +25,9 @@
> > > >        <author email="kschrader@karmalab.org">Kurt Schrader</author>
> > > >      </properties>
> > > >      <body>
> > > >   +    <release version="1.5-SNAPSHOT" date="in CVS">
> > > >   +      <action dev="dion" type="update">Use assert taglib for
> > > > tests</action>
> > > >   +    </release>
> > > >        <release version="1.4" date="2004-05-15">
> > > >          <action dev="brett" type="fix" issue="MPJAVA-18" due-
> to="Lynn
> > > > Richards">Allow specifying a JDK to compile with other than the
> running
> > > > one</action>
> > > >          <action dev="brett" type="fix" issue="MPJAVA-1" due-
> to="Scott
> > > > Foster">Add memory usage parameters to pass to the ant javac
> task</action>
> > > >
> > > >
> > > >
> > > >   1.3       +2 -5      maven-plugins/java/src/plugin-test/maven.xml
> > > >
> > > >   Index: maven.xml
> > > >
> ===================================================================
> > > >   RCS file: /home/cvs/maven-plugins/java/src/plugin-test/maven.xml,v
> > > >   retrieving revision 1.2
> > > >   retrieving revision 1.3
> > > >   diff -u -r1.2 -r1.3
> > > >   --- maven.xml       4 Mar 2004 18:35:34 -0000       1.2
> > > >   +++ maven.xml       29 Jun 2004 13:43:16 -0000      1.3
> > > >   @@ -16,6 +16,7 @@
> > > >     */
> > > >     -->
> > > >    <project xmlns:util="jelly:util"
> > > >   +         xmlns:assert="assert"
> > > >             xmlns:j="jelly:core">
> > > >
> > > >      <goal name="testPlugin" prereqs="test-java-compile">
> > > >   @@ -25,10 +26,6 @@
> > > >
> > > >      <goal name="test-java-compile">
> > > >        <attainGoal name="java:compile"/>
> > > >   -    <j:set var="expectedFile"
> > > > value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > >   -    <util:file var="file" name="${expectedFile}" />
> > > >   -    <j:if test="${!(file.exists())}">
> > > >   -      <fail>${expectedFile} not generated</fail>
> > > >   -    </j:if>
> > > >   +    <assert:assertFileExists
> > > > file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > > >      </goal>
> > > >    </project>
> > > >
> > > >
> > > >
> > > >   1.26      +1 -1      maven-plugins/java/project.xml
> > > >
> > > >   Index: project.xml
> > > >
> ===================================================================
> > > >   RCS file: /home/cvs/maven-plugins/java/project.xml,v
> > > >   retrieving revision 1.25
> > > >   retrieving revision 1.26
> > > >   diff -u -r1.25 -r1.26
> > > >   --- project.xml     25 Jun 2004 15:24:28 -0000      1.25
> > > >   +++ project.xml     29 Jun 2004 13:43:16 -0000      1.26
> > > >   @@ -23,7 +23,7 @@
> > > >      <pomVersion>3</pomVersion>
> > > >      <id>maven-java-plugin</id>
> > > >      <name>Maven Java Plug-in</name>
> > > >   -  <currentVersion>1.4</currentVersion>
> > > >   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
> > > >      <description/>
> > > >      <shortDescription>Compile java code</shortDescription>
> > > >      <url>http://maven.apache.org/reference/plugins/java/</url>
> > > >
> > > >
> > > >
> > > >
> > > > --------------------------------------------------------------------
> -
> > > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: dev-help@maven.apache.org
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: dev-help@maven.apache.org
> > >
> > >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org



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


Re: cvs commit: maven-plugins/java project.xml

Posted by Dion Gillard <di...@gmail.com>.
Done.

I'm assuming from this that any changes to the plugin tests is not to
be recorded other than in the commit message, and that this includes
adding plugin test projects as well.

Is this right?

On Wed, 30 Jun 2004 12:05:35 +1000, Dion Gillard <di...@gmail.com> wrote:
> 
> I'm happy to go back and remove them.
> 
> Let me know if u want it done.
> 
> 
> On Wed, 30 Jun 2004 10:08:19 +1000, Brett Porter <br...@apache.org> wrote:
> >
> > dIon,
> >
> > Bumping the version of the plugin because the test changed seems backwards to
> > me. Isn't that why a plugin test has a project of its own?
> >
> > Probably likewise for the changes entry. I don't believe non-functional changes
> > should go in changes.xml.
> >
> > Cheers,
> > Brett
> >
> >
> >
> > Quoting dion@apache.org:
> >
> > > dion        2004/06/29 06:43:16
> > >
> > >   Modified:    java/xdocs changes.xml
> > >                java/src/plugin-test maven.xml
> > >                java     project.xml
> > >   Log:
> > >   Use assert taglib in plugin test
> > >
> > >   Revision  Changes    Path
> > >   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
> > >
> > >   Index: changes.xml
> > >   ===================================================================
> > >   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
> > >   retrieving revision 1.11
> > >   retrieving revision 1.12
> > >   diff -u -r1.11 -r1.12
> > >   --- changes.xml     16 May 2004 01:08:45 -0000      1.11
> > >   +++ changes.xml     29 Jun 2004 13:43:16 -0000      1.12
> > >   @@ -25,6 +25,9 @@
> > >        <author email="kschrader@karmalab.org">Kurt Schrader</author>
> > >      </properties>
> > >      <body>
> > >   +    <release version="1.5-SNAPSHOT" date="in CVS">
> > >   +      <action dev="dion" type="update">Use assert taglib for
> > > tests</action>
> > >   +    </release>
> > >        <release version="1.4" date="2004-05-15">
> > >          <action dev="brett" type="fix" issue="MPJAVA-18" due-to="Lynn
> > > Richards">Allow specifying a JDK to compile with other than the running
> > > one</action>
> > >          <action dev="brett" type="fix" issue="MPJAVA-1" due-to="Scott
> > > Foster">Add memory usage parameters to pass to the ant javac task</action>
> > >
> > >
> > >
> > >   1.3       +2 -5      maven-plugins/java/src/plugin-test/maven.xml
> > >
> > >   Index: maven.xml
> > >   ===================================================================
> > >   RCS file: /home/cvs/maven-plugins/java/src/plugin-test/maven.xml,v
> > >   retrieving revision 1.2
> > >   retrieving revision 1.3
> > >   diff -u -r1.2 -r1.3
> > >   --- maven.xml       4 Mar 2004 18:35:34 -0000       1.2
> > >   +++ maven.xml       29 Jun 2004 13:43:16 -0000      1.3
> > >   @@ -16,6 +16,7 @@
> > >     */
> > >     -->
> > >    <project xmlns:util="jelly:util"
> > >   +         xmlns:assert="assert"
> > >             xmlns:j="jelly:core">
> > >
> > >      <goal name="testPlugin" prereqs="test-java-compile">
> > >   @@ -25,10 +26,6 @@
> > >
> > >      <goal name="test-java-compile">
> > >        <attainGoal name="java:compile"/>
> > >   -    <j:set var="expectedFile"
> > > value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > >   -    <util:file var="file" name="${expectedFile}" />
> > >   -    <j:if test="${!(file.exists())}">
> > >   -      <fail>${expectedFile} not generated</fail>
> > >   -    </j:if>
> > >   +    <assert:assertFileExists
> > > file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> > >      </goal>
> > >    </project>
> > >
> > >
> > >
> > >   1.26      +1 -1      maven-plugins/java/project.xml
> > >
> > >   Index: project.xml
> > >   ===================================================================
> > >   RCS file: /home/cvs/maven-plugins/java/project.xml,v
> > >   retrieving revision 1.25
> > >   retrieving revision 1.26
> > >   diff -u -r1.25 -r1.26
> > >   --- project.xml     25 Jun 2004 15:24:28 -0000      1.25
> > >   +++ project.xml     29 Jun 2004 13:43:16 -0000      1.26
> > >   @@ -23,7 +23,7 @@
> > >      <pomVersion>3</pomVersion>
> > >      <id>maven-java-plugin</id>
> > >      <name>Maven Java Plug-in</name>
> > >   -  <currentVersion>1.4</currentVersion>
> > >   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
> > >      <description/>
> > >      <shortDescription>Compile java code</shortDescription>
> > >      <url>http://maven.apache.org/reference/plugins/java/</url>
> > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: dev-help@maven.apache.org
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > For additional commands, e-mail: dev-help@maven.apache.org
> >
> >
>

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


Re: cvs commit: maven-plugins/java project.xml

Posted by Dion Gillard <di...@gmail.com>.
I'm happy to go back and remove them.

Let me know if u want it done.

On Wed, 30 Jun 2004 10:08:19 +1000, Brett Porter <br...@apache.org> wrote:
> 
> dIon,
> 
> Bumping the version of the plugin because the test changed seems backwards to
> me. Isn't that why a plugin test has a project of its own?
> 
> Probably likewise for the changes entry. I don't believe non-functional changes
> should go in changes.xml.
> 
> Cheers,
> Brett
> 
> 
> 
> Quoting dion@apache.org:
> 
> > dion        2004/06/29 06:43:16
> >
> >   Modified:    java/xdocs changes.xml
> >                java/src/plugin-test maven.xml
> >                java     project.xml
> >   Log:
> >   Use assert taglib in plugin test
> >
> >   Revision  Changes    Path
> >   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
> >
> >   Index: changes.xml
> >   ===================================================================
> >   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
> >   retrieving revision 1.11
> >   retrieving revision 1.12
> >   diff -u -r1.11 -r1.12
> >   --- changes.xml     16 May 2004 01:08:45 -0000      1.11
> >   +++ changes.xml     29 Jun 2004 13:43:16 -0000      1.12
> >   @@ -25,6 +25,9 @@
> >        <author email="kschrader@karmalab.org">Kurt Schrader</author>
> >      </properties>
> >      <body>
> >   +    <release version="1.5-SNAPSHOT" date="in CVS">
> >   +      <action dev="dion" type="update">Use assert taglib for
> > tests</action>
> >   +    </release>
> >        <release version="1.4" date="2004-05-15">
> >          <action dev="brett" type="fix" issue="MPJAVA-18" due-to="Lynn
> > Richards">Allow specifying a JDK to compile with other than the running
> > one</action>
> >          <action dev="brett" type="fix" issue="MPJAVA-1" due-to="Scott
> > Foster">Add memory usage parameters to pass to the ant javac task</action>
> >
> >
> >
> >   1.3       +2 -5      maven-plugins/java/src/plugin-test/maven.xml
> >
> >   Index: maven.xml
> >   ===================================================================
> >   RCS file: /home/cvs/maven-plugins/java/src/plugin-test/maven.xml,v
> >   retrieving revision 1.2
> >   retrieving revision 1.3
> >   diff -u -r1.2 -r1.3
> >   --- maven.xml       4 Mar 2004 18:35:34 -0000       1.2
> >   +++ maven.xml       29 Jun 2004 13:43:16 -0000      1.3
> >   @@ -16,6 +16,7 @@
> >     */
> >     -->
> >    <project xmlns:util="jelly:util"
> >   +         xmlns:assert="assert"
> >             xmlns:j="jelly:core">
> >
> >      <goal name="testPlugin" prereqs="test-java-compile">
> >   @@ -25,10 +26,6 @@
> >
> >      <goal name="test-java-compile">
> >        <attainGoal name="java:compile"/>
> >   -    <j:set var="expectedFile"
> > value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> >   -    <util:file var="file" name="${expectedFile}" />
> >   -    <j:if test="${!(file.exists())}">
> >   -      <fail>${expectedFile} not generated</fail>
> >   -    </j:if>
> >   +    <assert:assertFileExists
> > file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
> >      </goal>
> >    </project>
> >
> >
> >
> >   1.26      +1 -1      maven-plugins/java/project.xml
> >
> >   Index: project.xml
> >   ===================================================================
> >   RCS file: /home/cvs/maven-plugins/java/project.xml,v
> >   retrieving revision 1.25
> >   retrieving revision 1.26
> >   diff -u -r1.25 -r1.26
> >   --- project.xml     25 Jun 2004 15:24:28 -0000      1.25
> >   +++ project.xml     29 Jun 2004 13:43:16 -0000      1.26
> >   @@ -23,7 +23,7 @@
> >      <pomVersion>3</pomVersion>
> >      <id>maven-java-plugin</id>
> >      <name>Maven Java Plug-in</name>
> >   -  <currentVersion>1.4</currentVersion>
> >   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
> >      <description/>
> >      <shortDescription>Compile java code</shortDescription>
> >      <url>http://maven.apache.org/reference/plugins/java/</url>
> >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > For additional commands, e-mail: dev-help@maven.apache.org
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 
>

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


Re: cvs commit: maven-plugins/java project.xml

Posted by Brett Porter <br...@apache.org>.
dIon,

Bumping the version of the plugin because the test changed seems backwards to
me. Isn't that why a plugin test has a project of its own?

Probably likewise for the changes entry. I don't believe non-functional changes
should go in changes.xml.

Cheers,
Brett

Quoting dion@apache.org:

> dion        2004/06/29 06:43:16
> 
>   Modified:    java/xdocs changes.xml
>                java/src/plugin-test maven.xml
>                java     project.xml
>   Log:
>   Use assert taglib in plugin test
>   
>   Revision  Changes    Path
>   1.12      +3 -0      maven-plugins/java/xdocs/changes.xml
>   
>   Index: changes.xml
>   ===================================================================
>   RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
>   retrieving revision 1.11
>   retrieving revision 1.12
>   diff -u -r1.11 -r1.12
>   --- changes.xml	16 May 2004 01:08:45 -0000	1.11
>   +++ changes.xml	29 Jun 2004 13:43:16 -0000	1.12
>   @@ -25,6 +25,9 @@
>        <author email="kschrader@karmalab.org">Kurt Schrader</author>
>      </properties>
>      <body>
>   +    <release version="1.5-SNAPSHOT" date="in CVS">
>   +      <action dev="dion" type="update">Use assert taglib for
> tests</action>
>   +    </release>
>        <release version="1.4" date="2004-05-15">
>          <action dev="brett" type="fix" issue="MPJAVA-18" due-to="Lynn
> Richards">Allow specifying a JDK to compile with other than the running
> one</action>
>          <action dev="brett" type="fix" issue="MPJAVA-1" due-to="Scott
> Foster">Add memory usage parameters to pass to the ant javac task</action>
>   
>   
>   
>   1.3       +2 -5      maven-plugins/java/src/plugin-test/maven.xml
>   
>   Index: maven.xml
>   ===================================================================
>   RCS file: /home/cvs/maven-plugins/java/src/plugin-test/maven.xml,v
>   retrieving revision 1.2
>   retrieving revision 1.3
>   diff -u -r1.2 -r1.3
>   --- maven.xml	4 Mar 2004 18:35:34 -0000	1.2
>   +++ maven.xml	29 Jun 2004 13:43:16 -0000	1.3
>   @@ -16,6 +16,7 @@
>     */
>     -->
>    <project xmlns:util="jelly:util"
>   +         xmlns:assert="assert"
>             xmlns:j="jelly:core">
>             
>      <goal name="testPlugin" prereqs="test-java-compile">
>   @@ -25,10 +26,6 @@
>      
>      <goal name="test-java-compile">
>        <attainGoal name="java:compile"/>
>   -    <j:set var="expectedFile"
> value="${maven.build.dest}/org/apache/maven/Dummy.class"/>
>   -    <util:file var="file" name="${expectedFile}" />
>   -    <j:if test="${!(file.exists())}">
>   -      <fail>${expectedFile} not generated</fail>
>   -    </j:if>
>   +    <assert:assertFileExists
> file="${maven.build.dest}/org/apache/maven/Dummy.class"/>
>      </goal>
>    </project>
>   
>   
>   
>   1.26      +1 -1      maven-plugins/java/project.xml
>   
>   Index: project.xml
>   ===================================================================
>   RCS file: /home/cvs/maven-plugins/java/project.xml,v
>   retrieving revision 1.25
>   retrieving revision 1.26
>   diff -u -r1.25 -r1.26
>   --- project.xml	25 Jun 2004 15:24:28 -0000	1.25
>   +++ project.xml	29 Jun 2004 13:43:16 -0000	1.26
>   @@ -23,7 +23,7 @@
>      <pomVersion>3</pomVersion>
>      <id>maven-java-plugin</id>
>      <name>Maven Java Plug-in</name>
>   -  <currentVersion>1.4</currentVersion>
>   +  <currentVersion>1.5-SNAPSHOT</currentVersion>
>      <description/>
>      <shortDescription>Compile java code</shortDescription>
>      <url>http://maven.apache.org/reference/plugins/java/</url>
>   
>   
>   
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 



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