svn commit: r123691 - in maven/maven-1/plugins/branches/scm-1.5-branch: src/main/org/apache/maven/plugins/scm xdocs

2004-12-29 Thread brett
Author: brett
Date: Wed Dec 29 17:56:24 2004
New Revision: 123691

URL: http://svn.apache.org/viewcvs?view=rev&rev=123691
Log:
reformat
Modified:
   
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java
   
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmCheckinBean.java
   
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmPatternBean.java
   
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmStatusBean.java
   maven/maven-1/plugins/branches/scm-1.5-branch/xdocs/changes.xml
   maven/maven-1/plugins/branches/scm-1.5-branch/xdocs/index.xml
   maven/maven-1/plugins/branches/scm-1.5-branch/xdocs/properties.xml

Modified: 
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java
Url: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java?view=diff&rev=123691&p1=maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java&r1=123690&p2=maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java&r2=123691
==
--- 
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java
(original)
+++ 
maven/maven-1/plugins/branches/scm-1.5-branch/src/main/org/apache/maven/plugins/scm/ScmBean.java
Wed Dec 29 17:56:24 2004
@@ -17,6 +17,7 @@
  * 
  */
 
+import org.apache.maven.scm.ScmFileSet;
 import org.apache.maven.scm.ScmResult;
 import org.apache.maven.scm.command.checkout.CheckOutScmResult;
 import org.apache.maven.scm.command.tag.TagScmResult;
@@ -30,7 +31,7 @@
 
 /**
  * A bean for using the Maven SCM API because wrangling objects in Jelly is no 
fun.
- * 
+ *
  * @author mailto:[EMAIL PROTECTED]">Brett Porter
  */
 public class ScmBean
@@ -44,7 +45,8 @@
 // note - this should not have a setter
 private File checkoutDirectory;
 
-protected Embedder getEmbedder() throws Exception
+protected Embedder getEmbedder()
+throws Exception
 {
 ClassLoader oldClassLoader = 
Thread.currentThread().getContextClassLoader();
 Thread.currentThread().setContextClassLoader( 
getClass().getClassLoader() );
@@ -54,11 +56,12 @@
 embedder.start();
 
 Thread.currentThread().setContextClassLoader( oldClassLoader );
-
+
 return embedder;
 }
 
-public void checkout() throws Exception
+public void checkout()
+throws Exception
 {
 // TODO: can this be shared more?
 Embedder embedder = getEmbedder();
@@ -69,7 +72,7 @@
 
 checkoutDirectory = new File( workingDirectory );
 if ( module.length() > 0 )
-   {
+{
 checkoutDirectory = new File( checkoutDirectory, module );
 }
 if ( checkoutDirectory.exists() )
@@ -80,12 +83,13 @@
 checkoutDirectory.mkdirs();
 
 // TODO: svn tag base, unless is HEAD, BASE, COMMITTED, PREV, rev#, 
{DATE}
-CheckOutScmResult result = scmManager.checkOut( repository, 
checkoutDirectory, tag );
+CheckOutScmResult result = scmManager.checkOut( repository, new 
ScmFileSet( checkoutDirectory ), tag );
 
 checkResult( result );
 }
 
-protected void checkResult( ScmResult result ) throws Exception
+protected void checkResult( ScmResult result )
+throws Exception
 {
 if ( !result.isSuccess() )
 {
@@ -98,7 +102,8 @@
 }
 }
 
-public void update() throws Exception
+public void update()
+throws Exception
 {
 // TODO: can this be shared more?
 Embedder embedder = getEmbedder();
@@ -107,12 +112,14 @@
 ScmRepository repository = scmManager.makeScmRepository( url );
 
 // TODO: svn tag base, unless is HEAD, BASE, COMMITTED, PREV, rev#, 
{DATE}
-UpdateScmResult result = scmManager.update( repository, new File( 
workingDirectory ), tag );
+// TODO: want includes/excludes?
+UpdateScmResult result = scmManager.update( repository, new 
ScmFileSet( new File( workingDirectory ) ), tag );
 
 checkResult( result );
 }
 
-public void tag() throws Exception
+public void tag()
+throws Exception
 {
 // TODO: can this be shared more?
 Embedder embedder = getEmbedder();
@@ -121,7 +128,8 @@
 ScmRepository repository = scmManager.makeScmRepository( url );
 
 // TODO: svn tag base, unless is HEAD, BASE, COMMITTED, PREV, rev#, 
{DATE}
-TagScmResult result = scmManager.tag( repository, new File( 
workingDirectory ), tag );
+// TODO: want includes/excludes?
+TagScmResult result = scmManager.tag( repository, new ScmFileSet( 

[jira] Commented: (MPPDF-27) Maven PDF still fails

2004-12-29 Thread jira
The following comment has been added to this issue:

 Author: Arnaud HERITIER
Created: Wed, 29 Dec 2004 3:46 PM
   Body:
Can you send us the log with :
maven -X maven:pdf
maven -Dmaven.pdf.debug=true maven:pdf

I have a similar environment (XP-SP2 + JDK1.4.2_06 + maven 1.0.2 + PDF  2.2.1) 
but I don't have this problem.
-
View this comment:
  http://jira.codehaus.org/browse/MPPDF-27?page=comments#action_28393

-
View the issue:
  http://jira.codehaus.org/browse/MPPDF-27

Here is an overview of the issue:
-
Key: MPPDF-27
Summary: Maven PDF still fails
   Type: Bug

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-pdf-plugin
   Versions:
 2.2

   Assignee: Arnaud HERITIER
   Reporter: Dr. Spock

Created: Fri, 17 Dec 2004 8:37 AM
Updated: Wed, 29 Dec 2004 3:46 PM
Environment: Windows XP SP2, Cygwin, j2sdk 1.4.2_06, Maven 1.0.2, 
maven-pdf-plugin SNAPSHOT and 2.2.1

Description:
$ maven pdf
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0.2

build:start:

xdoc:init:

pdf:init:

pdf:prepare:
[copy] Copying 35 files to 
C:\spock\projetos\demo-jira\doc\processo\site\target\pdf

fo:fo:
[echo] Generating 
c:\spock\projetos\demo-jira\doc\processo\site/target/pdf/project.fo from 
c:\spock\projetos\demo-jira\doc\processo\site/xdocs/navigation.xml ...

BUILD FAILED
File.. C:\Documents and 
Settings\alemos\.maven\cache\maven-pdf-plugin-SNAPSHOT\plugin.jelly
Element... j:invoke
Line.. 207
Column 56
java.lang.reflect.InvocationTargetException
Total time: 5 seconds
Finished at: Fri Dec 17 11:15:46 GMT-03:00 2004



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



Re: [vote] release gump 2.0 plugin

2004-12-29 Thread Alex Karasulu
+1
Brett Porter wrote:
Hi,
This plugin now generates somewhat more useful gump descriptors that 
have them built by Maven.

I'll do a bit more doco on the gotchas that still exist in gump before 
releasing it.

Changes:
- Add maven.gump.module.name property for overriding the module name
- Add junitreport element to the descriptor
- Add multiproject module for generating a single module with several 
projects within the one descriptor.
- Set maven.final.name as a property for the 
- Set 
- Add nag element at module level
- Stop mapping Maven names to gump names inside the plugin, but allow 
the project to do this for itself
- Handle subversion as an SCM type

+1 from me.
Cheers,
Brett
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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


[jira] Updated: (MPIDEA-18) Added improvements to the module creation

2004-12-29 Thread jira
The following issue has been updated:

Updater: Johann Reyes (mailto:[EMAIL PROTECTED])
   Date: Wed, 29 Dec 2004 10:54 AM
Changes:
 Attachment changed to diff.txt
-
For a full history of the issue, see:

  http://jira.codehaus.org/browse/MPIDEA-18?page=history

-
View the issue:
  http://jira.codehaus.org/browse/MPIDEA-18

Here is an overview of the issue:
-
Key: MPIDEA-18
Summary: Added improvements to the module creation
   Type: Improvement

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-idea-plugin

   Assignee: Brett Porter
   Reporter: Johann Reyes

Created: Wed, 29 Dec 2004 10:53 AM
Updated: Wed, 29 Dec 2004 10:54 AM

Description:
Fixed in this patch issues: MPIDEA-11, MPIDEA-15, also added deployment of 
libraries that have war.bundle=true to the exploded directory of a web 
application.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MPIDEA-18) Added improvements to the module creation

2004-12-29 Thread jira
The following issue has been updated:

Updater: Johann Reyes (mailto:[EMAIL PROTECTED])
   Date: Wed, 29 Dec 2004 10:55 AM
Changes:
 Attachment changed to diff1.txt
-
For a full history of the issue, see:

  http://jira.codehaus.org/browse/MPIDEA-18?page=history

-
View the issue:
  http://jira.codehaus.org/browse/MPIDEA-18

Here is an overview of the issue:
-
Key: MPIDEA-18
Summary: Added improvements to the module creation
   Type: Improvement

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-idea-plugin

   Assignee: Brett Porter
   Reporter: Johann Reyes

Created: Wed, 29 Dec 2004 10:53 AM
Updated: Wed, 29 Dec 2004 10:55 AM

Description:
Fixed in this patch issues: MPIDEA-11, MPIDEA-15, also added deployment of 
libraries that have war.bundle=true to the exploded directory of a web 
application.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (MPIDEA-18) Added improvements to the module creation

2004-12-29 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:
  http://jira.codehaus.org/browse/MPIDEA-18

Here is an overview of the issue:
-
Key: MPIDEA-18
Summary: Added improvements to the module creation
   Type: Improvement

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-idea-plugin

   Assignee: Brett Porter
   Reporter: Johann Reyes

Created: Wed, 29 Dec 2004 10:53 AM
Updated: Wed, 29 Dec 2004 10:53 AM

Description:
Fixed in this patch issues: MPIDEA-11, MPIDEA-15, also added deployment of 
libraries that have war.bundle=true to the exploded directory of a web 
application.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPPDF-27) Maven PDF still fails

2004-12-29 Thread jira
The following comment has been added to this issue:

 Author: Geoffrey
Created: Wed, 29 Dec 2004 10:45 AM
   Body:
I got this bug too with
maven fo:fo

In plugin.jelly I found it invokes the method transform on the ${transformer}, 
which throws the exception.

Could it be a Xalan vs JDK 1.4 issues?
Is there a xalan dependency missing for the plugin?

Using JDK1.4.2, calling maven directly from command line with a CLASSPATH 
enviroment variable set.
-
View this comment:
  http://jira.codehaus.org/browse/MPPDF-27?page=comments#action_28391

-
View the issue:
  http://jira.codehaus.org/browse/MPPDF-27

Here is an overview of the issue:
-
Key: MPPDF-27
Summary: Maven PDF still fails
   Type: Bug

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-pdf-plugin
   Versions:
 2.2

   Assignee: Arnaud HERITIER
   Reporter: Dr. Spock

Created: Fri, 17 Dec 2004 8:37 AM
Updated: Wed, 29 Dec 2004 10:45 AM
Environment: Windows XP SP2, Cygwin, j2sdk 1.4.2_06, Maven 1.0.2, 
maven-pdf-plugin SNAPSHOT and 2.2.1

Description:
$ maven pdf
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0.2

build:start:

xdoc:init:

pdf:init:

pdf:prepare:
[copy] Copying 35 files to 
C:\spock\projetos\demo-jira\doc\processo\site\target\pdf

fo:fo:
[echo] Generating 
c:\spock\projetos\demo-jira\doc\processo\site/target/pdf/project.fo from 
c:\spock\projetos\demo-jira\doc\processo\site/xdocs/navigation.xml ...

BUILD FAILED
File.. C:\Documents and 
Settings\alemos\.maven\cache\maven-pdf-plugin-SNAPSHOT\plugin.jelly
Element... j:invoke
Line.. 207
Column 56
java.lang.reflect.InvocationTargetException
Total time: 5 seconds
Finished at: Fri Dec 17 11:15:46 GMT-03:00 2004



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



RE: [vote] release gump 2.0 plugin

2004-12-29 Thread Vincent Massol
+1

> -Original Message-
> From: Brett Porter [mailto:[EMAIL PROTECTED]
> Sent: mercredi 29 décembre 2004 11:06
> To: Maven Developers List
> Subject: [vote] release gump 2.0 plugin
> 
> Hi,
> 
> This plugin now generates somewhat more useful gump descriptors that
> have them built by Maven.
> 
> I'll do a bit more doco on the gotchas that still exist in gump before
> releasing it.
> 
> Changes:
> - Add maven.gump.module.name property for overriding the module name
> - Add junitreport element to the descriptor
> - Add multiproject module for generating a single module with several
> projects within the one descriptor.
> - Set maven.final.name as a property for the  final.name
> - Set  path relative to that
> - Add nag element at module level
> - Stop mapping Maven names to gump names inside the plugin, but allow
> the project to do this for itself
> - Handle subversion as an SCM type
> 
> +1 from me.
> 
> Cheers,
> Brett
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



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



Re: [vote] release gump 2.0 plugin

2004-12-29 Thread Arnaud HERITIER
+1


On Wed, 29 Dec 2004 13:21:38 +0100, Emmanuel Venisse
<[EMAIL PROTECTED]> wrote:
> +1
> 
> - Original Message -
> From: "Brett Porter" <[EMAIL PROTECTED]>
> To: "Maven Developers List" 
> Sent: Wednesday, December 29, 2004 11:05 AM
> Subject: [vote] release gump 2.0 plugin
> 
> > Hi,
> >
> > This plugin now generates somewhat more useful gump descriptors that
> > have them built by Maven.
> >
> > I'll do a bit more doco on the gotchas that still exist in gump before
> > releasing it.
> >
> > Changes:
> > - Add maven.gump.module.name property for overriding the module name
> > - Add junitreport element to the descriptor
> > - Add multiproject module for generating a single module with several
> > projects within the one descriptor.
> > - Set maven.final.name as a property for the  > final.name
> > - Set  > path relative to that
> > - Add nag element at module level
> > - Stop mapping Maven names to gump names inside the plugin, but allow
> > the project to do this for itself
> > - Handle subversion as an SCM type
> >
> > +1 from me.
> >
> > Cheers,
> > Brett
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

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



Re: [vote] release gump 2.0 plugin

2004-12-29 Thread Emmanuel Venisse
+1

- Original Message - 
From: "Brett Porter" <[EMAIL PROTECTED]>
To: "Maven Developers List" 
Sent: Wednesday, December 29, 2004 11:05 AM
Subject: [vote] release gump 2.0 plugin


> Hi,
> 
> This plugin now generates somewhat more useful gump descriptors that 
> have them built by Maven.
> 
> I'll do a bit more doco on the gotchas that still exist in gump before 
> releasing it.
> 
> Changes:
> - Add maven.gump.module.name property for overriding the module name
> - Add junitreport element to the descriptor
> - Add multiproject module for generating a single module with several 
> projects within the one descriptor.
> - Set maven.final.name as a property for the  final.name
> - Set  path relative to that
> - Add nag element at module level
> - Stop mapping Maven names to gump names inside the plugin, but allow 
> the project to do this for itself
> - Handle subversion as an SCM type
> 
> +1 from me.
> 
> Cheers,
> Brett
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

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



Re: [vote] release maven-changelog-plugin 1.7.2

2004-12-29 Thread Emmanuel Venisse
+1 for me

Can you include the VSS support
(http://jira.codehaus.org/browse/MPCHANGELOG-49) in this release?

Emmanuel

- Original Message - 
From: "Brett Porter" <[EMAIL PROTECTED]>
To: "Maven Developers List" 
Sent: Wednesday, December 29, 2004 8:20 AM
Subject: [vote] release maven-changelog-plugin 1.7.2


> Hi,
>
> I'd like to release the changelog plugin to fix the following issues
> (particularly with CVS and SVN).
>
>Bug  MPCHANGELOG-48
>  *FIXED* CVS date
> format problem  Major
> Closed
>Bug  MPCHANGELOG-29
>  *FIXED* Svn date
> characters eaten by shell
>  Major Closed
>Bug  MPCHANGELOG-46
>  *FIXED* ViewCVS URL
> bug  Major Closed
>Improvement 
> MPCHANGELOG-45 
> *FIXED* Perforce Repository URL should include project
> 
>
>
> +1 from me.
>
> Cheers,
> Brett
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


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



[jira] Created: (MAVEN-1542) Merge build elements in extended POM

2004-12-29 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:
  http://jira.codehaus.org/browse/MAVEN-1542

Here is an overview of the issue:
-
Key: MAVEN-1542
Summary: Merge build elements in extended POM
   Type: Improvement

 Status: Unassigned
   Priority: Minor

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven
 Components: 
 inheritance
   Versions:
 1.0.2

   Assignee: 
   Reporter: Steven Caswell

Created: Wed, 29 Dec 2004 7:20 AM
Updated: Wed, 29 Dec 2004 7:20 AM

Description:
Resources and unit test include/exclude patterns in the build element are not 
inherited, which presents issues for subprojects that need to add to the 
existing parent project. Please change maven to allow these elements to be 
merged rather than replaced.

For example, a parent project.xml might include the following:

 
   
 
   
 src/test/resources
 resources
 
   **/*.*
 
   
   
 ${basedir}/../resources
 
   log4j-sample.properties
   beanRefFactory.xml
   aspectwerkz.xml
 
   
   
 ${basedir}/../resources/context
 context
 
   **/*.*
 
   
 
   
 

A subproject's project.xml might need to add an additional resources:

 
   
 
   
 ../interface/target/test-classes
 
 
   **/*.class
 
   
 
   
 

1.0.2 replaces the parent project's unitTest resources with that defined in the 
subproject. This improvement requests that they be merged, so the equivalent 
would be as follows:

 
   
 

   
 src/test/resources
 resources
 
   **/*.*
 
   
   
 ${basedir}/../resources
 
   log4j-sample.properties
   beanRefFactory.xml
   aspectwerkz.xml
 
   
   
 ${basedir}/../resources/context
 context
 
   **/*.*
 
   

   
 ../interface/target/test-classes
 
 
   **/*.class
 
   
 
   
 

A bit of preliminary discussion from the user's mailing list:
http://marc.theaimsgroup.com/?l=turbine-maven-user&m=110423829501521&w=2
http://marc.theaimsgroup.com/?l=turbine-maven-dev&m=110428720508765&w=2



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



Re: [vote] release gump 2.0 plugin

2004-12-29 Thread Dion Gillard
+1 as well.


On Wed, 29 Dec 2004 21:05:33 +1100, Brett Porter <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> This plugin now generates somewhat more useful gump descriptors that
> have them built by Maven.
> 
> I'll do a bit more doco on the gotchas that still exist in gump before
> releasing it.
> 
> Changes:
> - Add maven.gump.module.name property for overriding the module name
> - Add junitreport element to the descriptor
> - Add multiproject module for generating a single module with several
> projects within the one descriptor.
> - Set maven.final.name as a property for the  final.name
> - Set  path relative to that
> - Add nag element at module level
> - Stop mapping Maven names to gump names inside the plugin, but allow
> the project to do this for itself
> - Handle subversion as an SCM type
> 
> +1 from me.
> 
> Cheers,
> Brett
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
http://www.multitask.com.au/people/dion/

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



Re: [vote] release maven-changelog-plugin 1.7.2

2004-12-29 Thread Arnaud HERITIER
+1


On Wed, 29 Dec 2004 10:27:57 +0100, Vincent Massol <[EMAIL PROTECTED]> wrote:
> +1
> 
> > -Original Message-
> > From: Brett Porter [mailto:[EMAIL PROTECTED]
> > Sent: mercredi 29 décembre 2004 08:21
> > To: Maven Developers List
> > Subject: [vote] release maven-changelog-plugin 1.7.2
> >
> > Hi,
> >
> > I'd like to release the changelog plugin to fix the following issues
> > (particularly with CVS and SVN).
> >
> >   Bug 
> MPCHANGELOG-48
> >   *FIXED* CVS
> date
> > format problem 
> Major
> > Closed
> >   Bug 
> MPCHANGELOG-29
> >   *FIXED* Svn
> date
> > characters eaten by shell
> >   Major   Closed
> >   Bug 
> MPCHANGELOG-46
> >   *FIXED*
> ViewCVS
> > URL
> > bug   Major   Closed
> >   Improvement 
> > MPCHANGELOG-45 
> > *FIXED*   Perforce Repository URL should include project
> > 
> >
> >
> > +1 from me.
> >
> > Cheers,
> > Brett
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

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



[vote] release gump 2.0 plugin

2004-12-29 Thread Brett Porter
Hi,
This plugin now generates somewhat more useful gump descriptors that 
have them built by Maven.

I'll do a bit more doco on the gotchas that still exist in gump before 
releasing it.

Changes:
- Add maven.gump.module.name property for overriding the module name
- Add junitreport element to the descriptor
- Add multiproject module for generating a single module with several 
projects within the one descriptor.
- Set maven.final.name as a property for the 
- Set 
- Add nag element at module level
- Stop mapping Maven names to gump names inside the plugin, but allow 
the project to do this for itself
- Handle subversion as an SCM type

+1 from me.
Cheers,
Brett
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


multiple-platform

2004-12-29 Thread Glasman, AdiX
Does Maven supports build on multiple-platform and finally collect the
build artifacts on different platform and forms into one package?



svn commit: r123615 - /maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly

2004-12-29 Thread brett
Author: brett
Date: Wed Dec 29 01:41:55 2004
New Revision: 123615

URL: http://svn.apache.org/viewcvs?view=rev&rev=123615
Log:
avoid duplicate dependencies and sort them

Modified:
   maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly

Modified: maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly
Url: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly?view=diff&rev=123615&p1=maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly&r1=123614&p2=maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly&r2=123615
==
--- maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly 
(original)
+++ maven/maven-1/plugins/trunk/gump/src/plugin-resources/project.jelly Wed Dec 
29 01:41:55 2004
@@ -31,6 +31,17 @@
 
 
 
+
+
+  
+
+  ${dependentProjects.add(dep.getProperty('gump.project'))}
+
+
+  ${dependentProjects.add(dep.artifactId)}
+
+  
+
 
 
   
@@ -42,7 +53,7 @@
   
 
 
-
+
 

RE: [vote] release maven-changelog-plugin 1.7.2

2004-12-29 Thread Vincent Massol
+1

> -Original Message-
> From: Brett Porter [mailto:[EMAIL PROTECTED]
> Sent: mercredi 29 décembre 2004 08:21
> To: Maven Developers List
> Subject: [vote] release maven-changelog-plugin 1.7.2
> 
> Hi,
> 
> I'd like to release the changelog plugin to fix the following issues
> (particularly with CVS and SVN).
> 
>   Bug 
MPCHANGELOG-48
>   *FIXED* CVS
date
> format problem 
Major
> Closed
>   Bug 
MPCHANGELOG-29
>   *FIXED* Svn
date
> characters eaten by shell
>   Major   Closed
>   Bug 
MPCHANGELOG-46
>   *FIXED*
ViewCVS
> URL
> bug   Major   Closed
>   Improvement 
> MPCHANGELOG-45 
> *FIXED*   Perforce Repository URL should include project
> 
> 
> 
> +1 from me.
> 
> Cheers,
> Brett
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



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



[jira] Commented: (MPJCOVERAGE-21) Exception in thread "main" java.io.FileNotFoundException: jcoverage.ser (No such file or directory)

2004-12-29 Thread jira
The following comment has been added to this issue:

 Author: Geoffrey
Created: Wed, 29 Dec 2004 4:11 AM
   Body:
I also got that exception, but I got one earlier in the build process too:

 [instrument] [ERROR] java.io.IOException: CreateProcess: 
C:\develop\build\j2sdk1.4.2_05\...  ... 
com\domain\mypacka?

When using a smaller directory path, I get the same error, but more of the path 
is shown, again ending with the ? somewhere in the middle.

It seems like the command line is to short, yet I am using Windows XP and I 've 
tested an echo of a much longer command line succesfully.
-
View this comment:
  http://jira.codehaus.org/browse/MPJCOVERAGE-21?page=comments#action_28388

-
View the issue:
  http://jira.codehaus.org/browse/MPJCOVERAGE-21

Here is an overview of the issue:
-
Key: MPJCOVERAGE-21
Summary: Exception in thread "main" java.io.FileNotFoundException: 
jcoverage.ser (No such file or directory)
   Type: Bug

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-jcoverage-plugin
   Versions:
 1.0.7

   Assignee: Emmanuel Venisse
   Reporter: Håvard Bjåstad

Created: Fri, 3 Dec 2004 7:17 PM
Updated: Wed, 29 Dec 2004 4:11 AM

Description:
We have several projects that run fine, but with two of our projects we get the 
following output:

jcoverage:html-report:
[echo] Copying 2 source directories into one for jcoverage
jcoverage 1.0.5 copyright (c)2003 jcoverage ltd. http://jcoverage.com/
jcoverage is licensed under the GNU General Public License
jcoverage comes with ABSOLUTELY NO WARRANTY
[report] Exception in thread "main" java.io.FileNotFoundException: 
jcoverage.ser (No such file or directory)
[report]at java.io.FileInputStream.open(Native Method)
[report]at java.io.FileInputStream.(FileInputStream.java:106)
[report]at com.jcoverage.coverage.reporting.xml.Main.main(Main.java:106)
org.apache.commons.jelly.JellyTagException: 
/home/havard/.maven/cache/maven-jcoverage-plugin-1.0.7/plugin.jelly:193:91: 
 org.apache.tools.ant.BuildException

Maybe the problem is that these projects have two source directories, and 
jcoverage can't handle that?


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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