[jira] Updated: (MNG-926) Add javadoc comments/description to plugin parameters.

2005-09-19 Thread Johnny R. Ruiz III (JIRA)
 [ http://jira.codehaus.org/browse/MNG-926?page=all ]

Johnny R. Ruiz III updated MNG-926:
---

 Assign To: Johnny R. Ruiz III
Remaining Estimate: 6 hours
 Original Estimate: 21600

> Add javadoc comments/description to plugin parameters.  
> 
>
>  Key: MNG-926
>  URL: http://jira.codehaus.org/browse/MNG-926
>  Project: Maven 2
> Type: Improvement
>   Components: maven-assembly-plugin
> Reporter: Johnny R. Ruiz III
> Assignee: Johnny R. Ruiz III

>
> Original Estimate: 6 hours
> Remaining: 6 hours
>
> Add javadoc comment/description to plugin parameters.  Create a brief 
> overview/configuration of the plugin.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (MNG-926) Add javadoc comments/description to plugin parameters.

2005-09-19 Thread Johnny R. Ruiz III (JIRA)
Add javadoc comments/description to plugin parameters.  


 Key: MNG-926
 URL: http://jira.codehaus.org/browse/MNG-926
 Project: Maven 2
Type: Improvement
  Components: maven-assembly-plugin  
 Reporter: Johnny R. Ruiz III


Add javadoc comment/description to plugin parameters.  Create a brief 
overview/configuration of the plugin.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MNG-855) Maven Surefire Plugin Documentation

2005-09-19 Thread Johnny R. Ruiz III (JIRA)
 [ http://jira.codehaus.org/browse/MNG-855?page=all ]

Johnny R. Ruiz III updated MNG-855:
---

Attachment: MNG-855.patch

Added brief description of the plugin and sample configuration.

> Maven Surefire Plugin Documentation
> ---
>
>  Key: MNG-855
>  URL: http://jira.codehaus.org/browse/MNG-855
>  Project: Maven 2
> Type: Improvement
> Reporter: allan ramirez
> Assignee: Johnny R. Ruiz III
> Priority: Minor
>  Fix For: 2.0
>  Attachments: MNG-855.patch
>
>
> Add javadoc and apt doc for an overview

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[maven2 build - SUCCESS - update] Tue Sep 20 05:45:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.054500.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.054500.txt

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



[REPOCLEAN] Error(s) occurred while converting repository

2005-09-19 Thread REPOCLEAN
Errors occurred while performing maven-1 to maven-2 repository conversion.

For more details, see:

http://test.maven.codehaus.org/reports/repoclean/20-Sep-2005_01.43.40/repository.report.txt

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



svn commit: r290364 - in /maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean: discover/ArtifactDiscoverer.java discover/DefaultArtifactDiscoverer.java phase/DiscoveryPhase.java

2005-09-19 Thread brett
Author: brett
Date: Mon Sep 19 22:43:03 2005
New Revision: 290364

URL: http://svn.apache.org/viewcvs?rev=290364&view=rev
Log:
avoid failure when there is a bad path in the repository

Modified:

maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/ArtifactDiscoverer.java

maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/DefaultArtifactDiscoverer.java

maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/DiscoveryPhase.java

Modified: 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/ArtifactDiscoverer.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/ArtifactDiscoverer.java?rev=290364&r1=290363&r2=290364&view=diff
==
--- 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/ArtifactDiscoverer.java
 (original)
+++ 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/ArtifactDiscoverer.java
 Mon Sep 19 22:43:03 2005
@@ -17,6 +17,7 @@
  */
 
 import org.apache.maven.tools.repoclean.report.PathLister;
+import org.apache.maven.tools.repoclean.report.ReportWriteException;
 import org.apache.maven.tools.repoclean.report.Reporter;
 
 import java.io.File;
@@ -35,6 +36,6 @@
 
 List discoverArtifacts( File repositoryBase, Reporter reporter, String 
blacklistedPatterns,
 PathLister excludeLister, PathLister 
kickoutLister, boolean includeSnapshots )
-throws Exception;
+throws ReportWriteException;
 
 }

Modified: 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/DefaultArtifactDiscoverer.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/DefaultArtifactDiscoverer.java?rev=290364&r1=290363&r2=290364&view=diff
==
--- 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/DefaultArtifactDiscoverer.java
 (original)
+++ 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/discover/DefaultArtifactDiscoverer.java
 Mon Sep 19 22:43:03 2005
@@ -19,6 +19,7 @@
 import org.apache.maven.artifact.Artifact;
 import org.apache.maven.artifact.factory.ArtifactFactory;
 import org.apache.maven.tools.repoclean.report.PathLister;
+import org.apache.maven.tools.repoclean.report.ReportWriteException;
 import org.apache.maven.tools.repoclean.report.Reporter;
 
 import java.io.File;
@@ -39,7 +40,7 @@
 
 public List discoverArtifacts( File repositoryBase, Reporter reporter, 
String blacklistedPatterns,
PathLister excludeLister, PathLister 
kickoutLister, boolean convertSnapshots )
-throws Exception
+throws ReportWriteException
 {
 List artifacts = new ArrayList();
 
@@ -49,7 +50,7 @@
 {
 String path = artifactPaths[i];
 
-Artifact artifact = buildArtifact( path );
+Artifact artifact = buildArtifact( path, reporter );
 
 if ( artifact != null )
 {
@@ -63,8 +64,8 @@
 return artifacts;
 }
 
-private Artifact buildArtifact( String path )
-throws Exception
+private Artifact buildArtifact( String path, Reporter reporter )
+throws ReportWriteException
 {
 Artifact result;
 
@@ -77,7 +78,11 @@
 
 Collections.reverse( pathParts );
 
-int currentPart = 0;
+if ( pathParts.size() < 4 )
+{
+reporter.error( "Not enough parts (4) in path " + path );
+return null;
+}
 
 //discard the actual artifact filename.
 pathParts.remove( 0 );

Modified: 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/DiscoveryPhase.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/DiscoveryPhase.java?rev=290364&r1=290363&r2=290364&view=diff
==
--- 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/DiscoveryPhase.java
 (original)
+++ 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/DiscoveryPhase.java
 Mon Sep 19 22:43:03 2005
@@ -19,6 +19,7 @@
 import org.apache.maven.tools.repoclean.RepositoryCleanerConfiguration;
 import org.apache.maven.tools.repoclean.discover.ArtifactDiscoverer;
 import org.apache.maven.tools.repoclean.report.PathLister;
+import org.apache.mav

[jira] Updated: (MNG-792) Can't ctrl-C m2 under cygwin

2005-09-19 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-792?page=all ]

Brett Porter updated MNG-792:
-

Assign To: (was: Brett Porter)

> Can't ctrl-C m2 under cygwin
> 
>
>  Key: MNG-792
>  URL: http://jira.codehaus.org/browse/MNG-792
>  Project: Maven 2
> Type: Bug
> Versions: 2.0-beta-1
>  Environment: Windows XP, Cygwin
> Reporter: Mark Hobson

>
>
> Under cygwin you can't ctrl-C to interrupt the process when running m2.  This 
> used to work under 2.0-alpha-3.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MNG-763) consider include source root

2005-09-19 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-763?page=all ]

Brett Porter updated MNG-763:
-

Assign To: (was: Brett Porter)

> consider include source root
> 
>
>  Key: MNG-763
>  URL: http://jira.codehaus.org/browse/MNG-763
>  Project: Maven 2
> Type: New Feature
> Reporter: Brett Porter
> Priority: Minor
>  Fix For: 2.1

>
>
> this is something used by the native plugin but could be used by several 
> plugins that deal with C/C++ and maybe other languages. We should consider 
> adding it to the build section and the MavenProject object.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MNG-140) refactor maven-artifact

2005-09-19 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-140?page=all ]

Brett Porter updated MNG-140:
-

Assign To: (was: Brett Porter)

> refactor maven-artifact
> ---
>
>  Key: MNG-140
>  URL: http://jira.codehaus.org/browse/MNG-140
>  Project: Maven 2
> Type: Improvement
>   Components: design
> Reporter: Brett Porter
> Priority: Minor
>  Fix For: 2.1

>
>
> currently, there are a few inconsistencies in the way the artifact resolution 
> is implemented.
> ArtifactRepository objects are created from the project builder. It makes 
> more sense that the artifact resolver actually factory these on behalf of the 
> builder - currently setting any additional parameters on them requires it be 
> in the project, or that the project builder has knowledge of wagon.
> It is also uncertain if the wagon manager is required at all and may be able 
> to be folded into the artifact resolver.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290363 - /maven/maven-1/plugins/trunk/xdoc/plugin.jelly

2005-09-19 Thread ltheussl
Author: ltheussl
Date: Mon Sep 19 22:16:35 2005
New Revision: 290363

URL: http://svn.apache.org/viewcvs?rev=290363&view=rev
Log:
Fix bad cut&paste

Modified:
maven/maven-1/plugins/trunk/xdoc/plugin.jelly

Modified: maven/maven-1/plugins/trunk/xdoc/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/plugin.jelly?rev=290363&r1=290362&r2=290363&view=diff
==
--- maven/maven-1/plugins/trunk/xdoc/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/xdoc/plugin.jelly Mon Sep 19 22:16:35 2005
@@ -747,7 +747,7 @@
 
 
   
-
+
   
   
 
@@ -792,7 +792,7 @@
   
 
   
-
+
   
   
 



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



[maven2 build - SUCCESS - update] Tue Sep 20 05:00:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.05.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.05.txt

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



[jira] Closed: (MPXDOC-87) xdoc:validate broken

2005-09-19 Thread Lukas Theussl (JIRA)
 [ http://jira.codehaus.org/browse/MPXDOC-87?page=all ]
 
Lukas Theussl closed MPXDOC-87:
---

Resolution: Fixed

> xdoc:validate broken
> 
>
>  Key: MPXDOC-87
>  URL: http://jira.codehaus.org/browse/MPXDOC-87
>  Project: maven-xdoc-plugin
> Type: Bug
> Versions: 1.9.2
> Reporter: Joerg Schaible
> Assignee: Lukas Theussl
> Priority: Critical
>  Fix For: 1.10

>
>
> The call of xdoc:validate is broken, Maven reports the missing goal 
> "pom:taglib".

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290361 - in /maven/maven-1/plugins/trunk/xdoc: plugin.jelly plugin.properties src/plugin-resources/dtd/maven-xdoc-1.10.dtd src/plugin-resources/xsd/maven-navigation-1.10.xsd xdocs/changes.xml xdocs/goals.xml xdocs/properties.xml

2005-09-19 Thread ltheussl
Author: ltheussl
Date: Mon Sep 19 21:58:36 2005
New Revision: 290361

URL: http://svn.apache.org/viewcvs?rev=290361&view=rev
Log:
MPXDOC-87: Make xdoc:validate work

Modified:
maven/maven-1/plugins/trunk/xdoc/plugin.jelly
maven/maven-1/plugins/trunk/xdoc/plugin.properties

maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/dtd/maven-xdoc-1.10.dtd

maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/xsd/maven-navigation-1.10.xsd
maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml
maven/maven-1/plugins/trunk/xdoc/xdocs/goals.xml
maven/maven-1/plugins/trunk/xdoc/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/xdoc/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/plugin.jelly?rev=290361&r1=290360&r2=290361&view=diff
==
--- maven/maven-1/plugins/trunk/xdoc/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/xdoc/plugin.jelly Mon Sep 19 21:58:36 2005
@@ -30,6 +30,7 @@
   xmlns:ant="jelly:ant"
   xmlns:fmt="jelly:fmt"
   xmlns:doc="doc"
+  xmlns:plugin="plugin"
   xmlns:xdoc="jelly:org.apache.maven.xdoc.XdocTagLibrary">
 
   
@@ -729,33 +730,84 @@
 
   
 
+
   
-  
+  
   
 
-  
-  
+  
+
+ 
+
+
+
+
+
+  
+
+  
+  
+
+  
+
+
+
+
+  
+
+
+
+
+
+
+
 
 
+property="maven.docs.src.available"/>
 
 
-  
+  
 
   
-
+
+
+${maven.xdoc.validate.exclude}
+
+
+
+${maven.xdoc.xml.copy}
+
+
+
   
 
   
-
-  
-Validating ${file}
-
+  
+  
+
+  
+
+  
+  
+
+  
+
+  
+
   
 
-  
+
+   
+
+
 
   
   

Modified: maven/maven-1/plugins/trunk/xdoc/plugin.properties
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/plugin.properties?rev=290361&r1=290360&r2=290361&view=diff
==
--- maven/maven-1/plugins/trunk/xdoc/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/xdoc/plugin.properties Mon Sep 19 21:58:36 2005
@@ -80,6 +80,10 @@
 # Files not copied unless skin is classic
 
maven.xdoc.copy.excludes.classic=external-classic.png,help_logo.gif,icon_arrowfolderclosed1_sml.gif,icon_arrowwaste1_sml.gif,icon_arrowwaste2_sml.gif,icon_doc_lrg.gif,icon_doc_sml.gif,icon_error_lrg.gif,icon_folder_lrg.gif,icon_folder_sml.gif,icon_help_sml.gif,icon_info_lrg.gif,icon_members_lrg.gif,icon_sortdown.gif,icon_sortup.gif,icon_success_lrg.gif,icon_usergroups_lrg.gif,icon_arrowfolderopen2_sml.gif,icon_warning_lrg.gif,newwindow-classic.png,nw_maj_rond.gif,strich.gif,sw_maj_rond.gif,sw_med_rond.gif
 
+# List of xml files (or patterns) to exclude from validation
+# Note that navigation.xml and ${maven.xdoc.xml.copy} are included implicitly
+maven.xdoc.validate.exclude=changes.xml
+
 #
 # I18N Preferences
 #

Modified: 
maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/dtd/maven-xdoc-1.10.dtd
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/dtd/maven-xdoc-1.10.dtd?rev=290361&r1=290360&r2=290361&view=diff
==
--- 
maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/dtd/maven-xdoc-1.10.dtd 
(original)
+++ 
maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/dtd/maven-xdoc-1.10.dtd 
Mon Sep 19 21:58:36 2005
@@ -2,20 +2,25 @@
 

 %XHTML;

 

-

+

+

 

 

 

-

-

+

+

 

-

+

 

 

 


Modified: 
maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/xsd/maven-navigation-1.10.xsd
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/xsd/maven-navigation-1.10.xsd?rev=290361&r1=290360&r2=290361&view=diff
==
--- 
maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/xsd/maven-navigation-1.10.xsd
 (original)
+++ 
maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/xsd/maven-navigation-1.10.xsd
 Mon Sep 19 21:58:36 2005
@@ -21,7 +21,6 @@
 

   

 

-

 

   

   

@@ -36,16 +35,20 @@
   

 

   

-  

   

 

   

 

 

 

+

+

+

   

 

   

+  

+  

   

 

   

@@ -70,6 +73,13 @@
   

   

+

+  

+  

+

+  

+

+  

 

   

   


Modified: maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml?rev=290361&r1=290360&r2=290361&view=diff
===

[jira] Closed: (MPPOM-1) pom:validate does not work with

2005-09-19 Thread Lukas Theussl (JIRA)
 [ http://jira.codehaus.org/browse/MPPOM-1?page=all ]
 
Lukas Theussl closed MPPOM-1:
-

Resolution: Fixed

> pom:validate does not work with 
> 
>
>  Key: MPPOM-1
>  URL: http://jira.codehaus.org/browse/MPPOM-1
>  Project: maven-pom-plugin
> Type: Bug
> Reporter: Vincent Massol
> Assignee: Lukas Theussl
>  Fix For: 1.4.2

>
>
> For example, in the Maven plugins if you type maven pom:validate you get 
> several errors even though the missing elements are defined in the parent 
> project.xml.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[maven2 build - SUCCESS - update] Tue Sep 20 04:45:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.044500.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.044500.txt

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



[jira] Closed: (MPPOM-5) pom:validate doesn't work in maven-1.1-beta-1

2005-09-19 Thread Lukas Theussl (JIRA)
 [ http://jira.codehaus.org/browse/MPPOM-5?page=all ]
 
Lukas Theussl closed MPPOM-5:
-

Resolution: Fixed

> pom:validate doesn't work in maven-1.1-beta-1
> -
>
>  Key: MPPOM-5
>  URL: http://jira.codehaus.org/browse/MPPOM-5
>  Project: maven-pom-plugin
> Type: Bug
> Versions: 1.4.1
>  Environment: Windows 2000, JDK 1.4.2_07
> Reporter: Davy Toch
> Assignee: Lukas Theussl
>  Fix For: 1.4.2
>  Attachments: project.xml
>
>
> Using the genapp plugin (2.2) of Maven-1.1-beta-1, I created a simple jar 
> project.
> Running pom:validate on the POM gave errors due to the fact that project.xml 
> generated by the genapp plugin isn't a model-3.0.0 POM, because e.g. the 
>  element generated by the genapp wizard isn't defined in the 
> model-3.0.0 xsd. So I modified project.xml in order to be conform with the 
> model-3.0.0 xsd. However running pom:validate still gives the following error:
> ~~~
> $maven -e pom:validate
>  __  __
> |  \/  |__ _Apache__ ___
> | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
> |_|  |_\__,_|\_/\___|_||_|  v. 1.1-beta-1
> build:start:
> pom:verify-version:
> pom:validate:
> [echo] == CUSTOM ADDED IN POM PLUGIN 
> [echo] XSD file : c:\devtools\maven-1.1-beta-1/maven-project-3.xsd
> [echo] POM file : C:\tmp\myapp\project.xml
> [echo] ===
> [java] C:\tmp\myapp\project.xml:19:10: error: cvc-elt.1: Cannot find the 
> declaration of element 'project'.
> [java] [ERROR] Java Result: 1
> BUILD SUCCESSFUL
> Total time   : 4 seconds
> Finished at  : zondag 31 juli 2005 12:58:49 CEST
> ~~~
> The POM file project.xml is included as attachment.
> Additional question : is the pom plugin still necessary from maven-1.1-beta-1 
> onwards, because I thought the Maven core would verify more strictly the POM 
> itself (cf http://maven.apache.org/reference/backwards-compatibility.html)?
> Regards,
> Davy Toch

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290358 - /maven/components/trunk/sandbox/repoclean/src/main/bash/repoclean.sh

2005-09-19 Thread brett
Author: brett
Date: Mon Sep 19 21:51:14 2005
New Revision: 290358

URL: http://svn.apache.org/viewcvs?rev=290358&view=rev
Log:
add debug option

Modified:
maven/components/trunk/sandbox/repoclean/src/main/bash/repoclean.sh

Modified: maven/components/trunk/sandbox/repoclean/src/main/bash/repoclean.sh
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/src/main/bash/repoclean.sh?rev=290358&r1=290357&r2=290358&view=diff
==
--- maven/components/trunk/sandbox/repoclean/src/main/bash/repoclean.sh 
(original)
+++ maven/components/trunk/sandbox/repoclean/src/main/bash/repoclean.sh Mon Sep 
19 21:51:14 2005
@@ -22,6 +22,11 @@
   shift
 fi
 
+if [ "$1" == "debug" ]; then
+  JAVA_OPTS="-Xdebug -Xnoagent -Djava.compiler=NONE 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"
+  shift
+fi
+
 if [ -z "$JAVA_HOME" ]; then
   JAVA_HOME=/usr/local/java
 fi



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



svn commit: r290357 - /maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/RewritePhase.java

2005-09-19 Thread brett
Author: brett
Date: Mon Sep 19 21:50:47 2005
New Revision: 290357

URL: http://svn.apache.org/viewcvs?rev=290357&view=rev
Log:
add metadata for new artifact

Modified:

maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/RewritePhase.java

Modified: 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/RewritePhase.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/RewritePhase.java?rev=290357&r1=290356&r2=290357&view=diff
==
--- 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/RewritePhase.java
 (original)
+++ 
maven/components/trunk/sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/phase/RewritePhase.java
 Mon Sep 19 21:50:47 2005
@@ -364,10 +364,11 @@
 private void mergeMetadata( Metadata sourceMetadata, File target, boolean 
reportOnly )
 throws IOException, DigestException, XmlPullParserException, 
NoSuchAlgorithmException
 {
+boolean changed = false;
+Metadata targetMetadata = null;
+
 if ( target.exists() )
 {
-Metadata targetMetadata = null;
-
 Reader reader = null;
 
 try
@@ -383,32 +384,36 @@
 IOUtil.close( reader );
 }
 
-boolean changed = targetMetadata.merge( sourceMetadata );
-
-if ( changed )
+changed = targetMetadata.merge( sourceMetadata );
+}
+else
+{
+changed = true;
+targetMetadata = sourceMetadata;
+}
+if ( changed )
+{
+Writer writer = null;
+try
 {
-Writer writer = null;
-try
-{
-target.getParentFile().mkdirs();
-writer = new FileWriter( target );
+target.getParentFile().mkdirs();
+writer = new FileWriter( target );
 
-MetadataXpp3Writer mappingWriter = new 
MetadataXpp3Writer();
+MetadataXpp3Writer mappingWriter = new MetadataXpp3Writer();
 
-mappingWriter.write( writer, targetMetadata );
+mappingWriter.write( writer, targetMetadata );
 
-if ( !reportOnly )
-{
-File digestFile = artifactDigestor.getDigestFile( 
target, Digestor.MD5 );
-artifactDigestor.createArtifactDigest( target, 
digestFile, Digestor.MD5 );
-digestFile = artifactDigestor.getDigestFile( target, 
Digestor.SHA );
-artifactDigestor.createArtifactDigest( target, 
digestFile, Digestor.SHA );
-}
-}
-finally
+if ( !reportOnly )
 {
-IOUtil.close( writer );
+File digestFile = artifactDigestor.getDigestFile( target, 
Digestor.MD5 );
+artifactDigestor.createArtifactDigest( target, digestFile, 
Digestor.MD5 );
+digestFile = artifactDigestor.getDigestFile( target, 
Digestor.SHA );
+artifactDigestor.createArtifactDigest( target, digestFile, 
Digestor.SHA );
 }
+}
+finally
+{
+IOUtil.close( writer );
 }
 }
 }



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



svn commit: r290356 - in /maven/maven-1/plugins/trunk/pom: plugin.jelly project.xml

2005-09-19 Thread ltheussl
Author: ltheussl
Date: Mon Sep 19 21:49:55 2005
New Revision: 290356

URL: http://svn.apache.org/viewcvs?rev=290356&view=rev
Log:
Make pom:validate use the new plugin:validate-xml tag

Modified:
maven/maven-1/plugins/trunk/pom/plugin.jelly
maven/maven-1/plugins/trunk/pom/project.xml

Modified: maven/maven-1/plugins/trunk/pom/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pom/plugin.jelly?rev=290356&r1=290355&r2=290356&view=diff
==
--- maven/maven-1/plugins/trunk/pom/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/pom/plugin.jelly Mon Sep 19 21:49:55 2005
@@ -22,6 +22,7 @@
   xmlns:j="jelly:core"
   xmlns:d="jelly:define"
   xmlns:pom="pom"
+  xmlns:plugin="plugin"
   xmlns:util="jelly:util"
   xmlns:ant="jelly:ant"
   xmlns:artifact="artifact">
@@ -54,17 +55,10 @@
   
   
   
-  
+  
 
-
-  
-  
-  
-  
-
-
-
 
 
@@ -72,15 +66,15 @@
   
 
-
-
-  
-  
-  
-
+xsd file: ${xsd}
+
+
 
   
-  
+
+
   
 

Modified: maven/maven-1/plugins/trunk/pom/project.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pom/project.xml?rev=290356&r1=290355&r2=290356&view=diff
==
--- maven/maven-1/plugins/trunk/pom/project.xml (original)
+++ maven/maven-1/plugins/trunk/pom/project.xml Mon Sep 19 21:49:55 2005
@@ -88,31 +88,9 @@
   1.4-dev-8
 
 
-  xml-apis
-  xml-apis
-  1.0.b2
-
-
   maven
   maven
   1.0
-
-
-  isorelax
-  isorelax
-  20030108
-
-
-
-
-  thaiopensource
-  jing
-  20030619
-
-
-  xerces
-  xerces
-  2.4.0
 
   
 



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



svn commit: r290354 - in /maven/maven-1/plugins/trunk/plugin: plugin.jelly project.xml src/main/org/apache/maven/JaxpMsvBean.java xdocs/changes.xml xdocs/goals.xml xdocs/tags.xml

2005-09-19 Thread ltheussl
Author: ltheussl
Date: Mon Sep 19 21:44:28 2005
New Revision: 290354

URL: http://svn.apache.org/viewcvs?rev=290354&view=rev
Log:
Add new tag validate-xml

Added:

maven/maven-1/plugins/trunk/plugin/src/main/org/apache/maven/JaxpMsvBean.java
Modified:
maven/maven-1/plugins/trunk/plugin/plugin.jelly
maven/maven-1/plugins/trunk/plugin/project.xml
maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml
maven/maven-1/plugins/trunk/plugin/xdocs/goals.xml
maven/maven-1/plugins/trunk/plugin/xdocs/tags.xml

Modified: maven/maven-1/plugins/trunk/plugin/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/plugin.jelly?rev=290354&r1=290353&r2=290354&view=diff
==
--- maven/maven-1/plugins/trunk/plugin/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/plugin/plugin.jelly Mon Sep 19 21:44:28 2005
@@ -31,6 +31,15 @@
   xmlns:assert="assert">
 
   
+
+
+
+
+
+
 
   
 
@@ -55,8 +64,8 @@
   
 
   
-
-
+
+
   
 
   

Modified: maven/maven-1/plugins/trunk/plugin/project.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/project.xml?rev=290354&r1=290353&r2=290354&view=diff
==
--- maven/maven-1/plugins/trunk/plugin/project.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/project.xml Mon Sep 19 21:44:28 2005
@@ -115,6 +115,14 @@
 Developer
   
 
+
+  Lukas Theussl
+  ltheussl
+  [EMAIL PROTECTED]
+  
+Developer
+  
+
   
   
 
@@ -135,6 +143,11 @@
   1.0
 
 
+  commons-logging
+  commons-logging
+  1.0.3
+
+
   jdom
   jdom
   b10
@@ -159,6 +172,26 @@
   xerces
   2.4.0
   http://xml.apache.org/xerces2-j/
+
+
+  msv
+  msv
+  20050913
+
+
+  msv
+  isorelax
+  20050913
+
+
+  msv
+  relaxngDatatype
+  20050913
+
+
+  msv
+  xsdlib
+  20050913
 
   
 

Added: 
maven/maven-1/plugins/trunk/plugin/src/main/org/apache/maven/JaxpMsvBean.java
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/src/main/org/apache/maven/JaxpMsvBean.java?rev=290354&view=auto
==
--- 
maven/maven-1/plugins/trunk/plugin/src/main/org/apache/maven/JaxpMsvBean.java 
(added)
+++ 
maven/maven-1/plugins/trunk/plugin/src/main/org/apache/maven/JaxpMsvBean.java 
Mon Sep 19 21:44:28 2005
@@ -0,0 +1,136 @@
+package org.apache.maven;
+
+/* 
+ *   Copyright 2001-2005 The Apache Software Foundation.
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ * 
+ */
+
+
+import com.sun.msv.verifier.jaxp.SAXParserFactoryImpl;
+
+import java.io.File;
+
+import javax.xml.parsers.*;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+import org.xml.sax.helpers.DefaultHandler;
+import org.xml.sax.SAXParseException;
+import org.xml.sax.SAXException;
+
+
+/**
+ * JaxpMsvBean Bean: Uses JAXP implementation of MSV.
+ *
+ * @author mailto:[EMAIL PROTECTED]">Lukas Theussl
+ */
+public class JaxpMsvBean
+{
+//~ Instance fields --
+
+/** The schema to use. */
+private String schema;
+
+/** The file to validate. */
+private String file;
+
+/** For debug output. */
+private Log log = LogFactory.getLog(JaxpMsvBean.class);
+
+
+//~ Methods --
+
+/**
+ * Performs validation.
+ */
+public void validate() throws Exception 
+{
+SAXParserFactory factory =
+new SAXParserFactoryImpl(new File(schema));
+factory.setNamespaceAware(true);
+SAXParser parser = factory.newSAXParser();
+parser.parse(new File(file), new DefaultHandler()
+{
+boolean isValid = true;
+public void warning(SAXParseException e) throws SAXException
+{
+log.warn(e);
+}
+public void error(SAXParseException e) throws SAXException
+{
+   

svn commit: r290352 - /maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java

2005-09-19 Thread brett
Author: brett
Date: Mon Sep 19 21:35:46 2005
New Revision: 290352

URL: http://svn.apache.org/viewcvs?rev=290352&view=rev
Log:
don't include lifecycle introduced plugins (also resolves issue with release 
plugin snapshot)

Modified:

maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java

Modified: 
maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java?rev=290352&r1=290351&r2=290352&view=diff
==
--- 
maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
 (original)
+++ 
maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
 Mon Sep 19 21:35:46 2005
@@ -97,12 +97,12 @@
  * @component 
role="org.apache.maven.artifact.metadata.ArtifactMetadataSource"
  */
 private ArtifactMetadataSource artifactMetadataSource;
-
+
 /**
  * @component role="org.apache.maven.plugin.version.PluginVersionManager"
  */
 private PluginVersionManager pluginVersionManager;
-
+
 /**
  * @parameter 
expression="${component.org.codehaus.plexus.components.inputhandler.InputHandler}"
  * @required
@@ -116,7 +116,7 @@
  * @readonly
  */
 private ArtifactRepository localRepository;
-
+
 /**
  * @parameter expression="${settings}"
  * @required
@@ -835,39 +835,43 @@
 MavenProject releaseProject = new MavenProject( project );
 Model releaseModel = releaseProject.getModel();
 fixNullValueInModel( releaseModel, project.getModel() );
-
+
 // the release POM should reflect bits of these which were 
injected at build time...
 // we don't need these polluting the POM.
 releaseModel.setProfiles( Collections.EMPTY_LIST );
 releaseModel.setDependencyManagement( null );
 releaseModel.getBuild().setPluginManagement( null );
-
+
 String projectVersion = releaseModel.getVersion();
 if ( ArtifactUtils.isSnapshot( projectVersion ) )
 {
 String snapshotVersion = projectVersion;
-
-projectVersion = getVersionResolver().getResolvedVersion( 
releaseModel.getGroupId(), releaseModel.getArtifactId() );
-
+
+projectVersion = getVersionResolver().getResolvedVersion( 
releaseModel.getGroupId(),
+  
releaseModel.getArtifactId() );
+
 if ( ArtifactUtils.isSnapshot( projectVersion ) )
 {
-throw new MojoExecutionException( "MAJOR PROBLEM!!! 
Cannot find resolved version to be used in releasing project: " + 
releaseProject.getId() );
+throw new MojoExecutionException(
+"MAJOR PROBLEM!!! Cannot find resolved version to 
be used in releasing project: " +
+releaseProject.getId() );
 }
-
+
 releaseModel.setVersion( projectVersion );
-
+
 String finalName = releaseModel.getBuild().getFinalName();
-
+
 if ( finalName.equals( releaseModel.getArtifactId() + "-" 
+ snapshotVersion ) )
 {
 releaseModel.getBuild().setFinalName( null );
 }
 else if ( finalName.indexOf( "SNAPSHOT" ) > -1 )
 {
-throw new MojoExecutionException( "Cannot reliably 
adjust the finalName of project: " + releaseProject.getId() );
+throw new MojoExecutionException(
+"Cannot reliably adjust the finalName of project: 
" + releaseProject.getId() );
 }
 }
-
+
 releaseModel.setParent( null );
 
 Set artifacts = releaseProject.getArtifacts();
@@ -880,23 +884,25 @@
 for ( Iterator i = 
releaseProject.getArtifacts().iterator(); i.hasNext(); )
 {
 Artifact artifact = (Artifact) i.next();
-
+
 Dependency newdep = new Dependency();
 
 newdep.setArtifactId( artifact.getArtifactId() );
 newdep.setGroupId( artifact.getGroupId() );
-

[maven2 build - SUCCESS - update] Tue Sep 20 04:15:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.041500.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.041500.txt

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



svn commit: r290349 - /maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml

2005-09-19 Thread brett
Author: brett
Date: Mon Sep 19 21:10:50 2005
New Revision: 290349

URL: http://svn.apache.org/viewcvs?rev=290349&view=rev
Log:
revert version to snapshot

Modified:
maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml

Modified: maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml?rev=290349&r1=290348&r2=290349&view=diff
==
--- maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml (original)
+++ maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml Mon Sep 
19 21:10:50 2005
@@ -8,7 +8,7 @@
   maven-release-plugin
   maven-plugin
   Maven Release plugin
-  2.0-beta-1-rev1
+  2.0-beta-2-SNAPSHOT
   
 
   org.apache.maven



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



svn commit: r290348 - in /maven/components/trunk/maven-core-it/it2002: project/pom.xml test.sh

2005-09-19 Thread brett
Author: brett
Date: Mon Sep 19 21:10:38 2005
New Revision: 290348

URL: http://svn.apache.org/viewcvs?rev=290348&view=rev
Log:
make usable on cygwin

Modified:
maven/components/trunk/maven-core-it/it2002/project/pom.xml
maven/components/trunk/maven-core-it/it2002/test.sh

Modified: maven/components/trunk/maven-core-it/it2002/project/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/project/pom.xml?rev=290348&r1=290347&r2=290348&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/project/pom.xml (original)
+++ maven/components/trunk/maven-core-it/it2002/project/pom.xml Mon Sep 19 
21:10:38 2005
@@ -40,14 +40,14 @@
   
 
   
-
scm:svn:file://${project.file.parentFile.parentFile}/target/svnroot/project/trunk
-
scm:svn:file://${project.file.parentFile.parentFile}/target/svnroot/project/trunk
-
file://${project.file.parentFile.parentFile}/target/svnroot/project/trunk
+
scm:svn:file://localhost/${project.file.parentFile.parentFile}/target/svnroot/project/trunk
+
scm:svn:file://localhost/${project.file.parentFile.parentFile}/target/svnroot/project/trunk
+
file://localhost/${project.file.parentFile.parentFile}/target/svnroot/project/trunk
 p1
   
 
   
-
file://${project.file.parentFile.parentFile}/target/svnroot/project/tags
+
file://localhost/${project.file.parentFile.parentFile}/target/svnroot/project/tags
   
 
   

Modified: maven/components/trunk/maven-core-it/it2002/test.sh
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/test.sh?rev=290348&r1=290347&r2=290348&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/test.sh (original)
+++ maven/components/trunk/maven-core-it/it2002/test.sh Mon Sep 19 21:10:38 2005
@@ -9,16 +9,25 @@
 
 dir=`readlink -f ${PWD}`
 
-svn import project file://${dir}/target/svnroot/project/trunk -m "import."
-svn mkdir file://${dir}/target/svnroot/project/tags -m "Creating tags dir."
+if [ "$1" == "windows" ]; then
+  dir=`cygpath -m $dir`
+  echo setting dir to $dir
+fi
 
-svn co file://${dir}/target/svnroot/project/trunk project.checkout
+svn import project file://localhost/${dir}/target/svnroot/project/trunk -m 
"import."
+svn mkdir file://localhost/${dir}/target/svnroot/project/tags -m "Creating 
tags dir."
+
+svn co file://localhost/${dir}/target/svnroot/project/trunk project.checkout
 
 cd project.checkout
 
+cat pom.xml | sed "s#\${project.file.parentFile.parentFile}#$dir#g" >tmp
+mv tmp pom.xml
+svn ci -m 'update scm' pom.xml
+
 rm -Rf target
 
-m2 -e release:prepare -Denv=test
+m2 -e release:prepare -Denv=test -B -Dtag=test-tag
 
 m2 -e release:perform -Denv=test
 



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



[jira] Created: (MNG-925) maven-metadata-.xml not generated when deploying to repository via scpexe protocol

2005-09-19 Thread Andrew Moore (JIRA)
maven-metadata-.xml not generated when deploying to repository via 
scpexe protocol
--

 Key: MNG-925
 URL: http://jira.codehaus.org/browse/MNG-925
 Project: Maven 2
Type: Bug
Versions: 2.0-beta-1
 Environment: Linux u-235 2.6.10-gentoo-r4 #1 SMP Mon Jan 10 14:53:56 EST 2005 
i686 AMD Athlon(tm) MP 2400+ AuthenticAMD GNU/Linux
java version "1.4.2_08"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
 Reporter: Andrew Moore


Further to the below, if I deploy a project to the remote repository
successfully via NFS and then switch over to scpexe, subsequent
deployments over scpexe work as expected.

This appears to be due to the presence of the maven-metadata.xml files
in the repository. If I remove these the deployment breaks again.

The root problem appears to be with the deployment and/or generation of
the metadata when using scpexe.

When broken, the root exception in the stack trace is:

Caused by: java.io.FileNotFoundException:
/home/amm/.m2/repository/com/distra/useful/useful/maven-metadata-distra.xml.tmp
(No such file or directory)

Checking my local repository reveals that the maven-metadata-distra.xml
has not been generated. maven-metadata-local.xml is still generated.

maven-metadata-distra.xml IS generated when deploying via NFS.

So, in a nutshell, maven-metadata-.xml does not appear to be
generated correctly when using the scpexe protocol.

Would anyone care to confirm this before I raise a bug?

I have tested with the normal scp protocol and deployment works as
expected. Using scp however I have to hard-code my key's password in
settings.xml. This is what I am trying to get around by using scpexe.

Thanks,
...andrew

andrew wrote:

>> Maven version: 2.0-beta-1
>> 
>> Hi,
>> 
>> Thanks to the maven devs for getting 2.0-beta-1 released. All the hard
>> work is much appreciated.
>> 
>> When attempting to deploy to a remote repository (via scpexe) with the
>> new release I am getting a few exceptions [1].
>> 
>> The jar is uploaded to the repository correctly, however the POM is not
>> and the build fails with the metadata related exceptions below.
>> 
>> The scpexe protocol appears to be working correctly for the upload but
>> some maven internal metadata processing doesn't like it.
>> 
>> If I deploy to the same server path over NFS, everything works as expected.
>> 
>> My project POM [2] and local settings.xml [3] are also attached.
>> 
>> Any insight into this issue much appreciated.
>> 
>> Thanks,
>> ...andrew
>> 
>> Listing 1:
>> 
>> $ m2 -Dmaven.test.skip=true clean:clean deploy
>> [INFO] Searching repository for plugin with prefix: 'clean'.
>> [INFO]
>> 
>> [INFO] Building distra - useful
>> [INFO]task-segment: [clean:clean, deploy]
>> [INFO]
>> 
>> [INFO] [clean:clean]
>> [INFO] Deleting directory
>> /secure/home/amm/prj/bt3/distra/useful/useful/target
>> [INFO] [resources:resources]
>> Downloading:
>> http://repo1.maven.org/maven2/sun/java/tools/tools/1.4.2_08/tools-1.4.2_08.pom
>> [WARNING] Unable to get resource from repository central
>> (http://repo1.maven.org/maven2)
>> [WARNING]
>>   * Using defaults for missing POM sun.java.tools:tools:pom:1.4.2_08
>> *
>> 
>> [INFO] [compiler:compile]
>> Compiling 211 source files to
>> /secure/home/amm/prj/bt3/distra/useful/useful/target/classes
>> [INFO] [resources:testResources]
>> [INFO] [compiler:testCompile]
>> Compiling 73 source files to
>> /secure/home/amm/prj/bt3/distra/useful/useful/target/test-classes
>> [INFO] [surefire:test]
>> [INFO] Tests are skipped.
>> [INFO] [jar:jar]
>> [INFO] Building jar:
>> /secure/home/amm/prj/bt3/distra/useful/useful/target/useful-1.0.jar
>> [INFO] [install:install]
>> [INFO] Installing
>> /secure/home/amm/prj/bt3/distra/useful/useful/target/useful-1.0.jar to
>> /home/amm/.m2/repository/com/distra/useful/useful/1.0/useful-1.0.jar
>> [INFO] [deploy:deploy]
>> Uploading:
>> scpexe://office/data/development/bt3/m2/distra/com/distra/useful/useful/1.0/useful-1.0.jar
>> [INFO] Retrieving previous metadata from distra
>> [INFO]
>> 
>> [ERROR] BUILD ERROR
>> [INFO]
>> 
>> [INFO] Diagnosis: Error deploying artifact
>> [INFO]
>> 
>> [ERROR] Cause:
>> org.apache.maven.plugin.MojoExecutionException: Error deploying artifact
>> at
>> org.apache.maven.plugin.deploy.DeployMojo.execute(DeployMojo.java:154)
>> at
>> org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:357)
>> at
>

[maven2 build - SUCCESS - update] Tue Sep 20 03:15:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.031500.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.031500.txt

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



[jira] Commented: (MNG-924) version in pom.xml doens't bump

2005-09-19 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-924?page=comments#action_46702 ] 

John Casey commented on MNG-924:


what's the result? is the version the same as what was released?

> version in pom.xml doens't bump
> ---
>
>  Key: MNG-924
>  URL: http://jira.codehaus.org/browse/MNG-924
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Versions: 2.0-beta-2
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
>
> I think it's related to MNG-923

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MNG-923) disappear in release-pom.xml

2005-09-19 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-923?page=comments#action_46701 ] 

John Casey commented on MNG-923:


I cannot reproduce this in it2002...can you see if it's still broken? I'll 
pickup on it tomorrow first thing if it is.

>  disappear in release-pom.xml
> --
>
>  Key: MNG-923
>  URL: http://jira.codehaus.org/browse/MNG-923
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Versions: 2.0-beta-2
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 1 hour
> Remaining: 1 hour
>
> and we have continuum-api-null under build

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



Re: svn commit: r290276 - in /maven/components/trunk: maven-core-it/it2002/project/subproject2/pom.xml maven-plugins/maven-release-plugin/pom.xml maven-plugins/maven-surefire-plugin/pom.xml maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

2005-09-19 Thread Brett Porter
Before and after I get a NPE from PluginParameterExpressionEvaluator, so
I can't really test it.

I didn't understand the issue from the description in your cvs commit,
that's all.

- Brett

John Casey wrote:

> Brett,
>
> Put it back to 2.0-beta-2-SNAPSHOT, then run test.sh under
> maven-core-it/it2002, and you'll see why.
>
> Brett Porter wrote:
> | I also don't understand why it was necessary.
> |
> |
> | Emmanuel Venisse wrote:
> |
> |
> |>jdcasey,
> |>
> |>I suppose it's a temporary version ;-)
> |>
> |>Emmanuel
> |>
> |>
> |>>Modified:
> |>>maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
> |>>URL:
> |>>http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
> |>>
> |>>==
> |>>
> |>>--- maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
> |>>(original)
> |>>+++ maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
> |>>Mon Sep 19 14:24:40 2005
> |>>@@ -8,7 +8,7 @@
> |>>   maven-release-plugin
> |>>   maven-plugin
> |>>   Maven Release plugin
> |>>-  2.0-beta-2-SNAPSHOT
> |>>+  2.0-beta-1-rev1
> |>>   
> |>
> |>
> |>
> |>
> |>-
> |>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]


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



svn commit: r290340 - /maven/components/trunk/maven-core-it/it2002/project/pom.xml

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 20:12:41 2005
New Revision: 290340

URL: http://svn.apache.org/viewcvs?rev=290340&view=rev
Log:
Removing build directory override.

Modified:
maven/components/trunk/maven-core-it/it2002/project/pom.xml

Modified: maven/components/trunk/maven-core-it/it2002/project/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/project/pom.xml?rev=290340&r1=290339&r2=290340&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/project/pom.xml (original)
+++ maven/components/trunk/maven-core-it/it2002/project/pom.xml Mon Sep 19 
20:12:41 2005
@@ -92,10 +92,6 @@
   test
 
   
-
-  
-alt-target
-  
 
   
 



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



svn commit: r290339 - /maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 20:11:59 2005
New Revision: 290339

URL: http://svn.apache.org/viewcvs?rev=290339&view=rev
Log:
Avoid setting finalName when it conforms to artifactId-version.

Modified:

maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java

Modified: 
maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java?rev=290339&r1=290338&r2=290339&view=diff
==
--- 
maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
 (original)
+++ 
maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
 Mon Sep 19 20:11:59 2005
@@ -860,7 +860,7 @@
 
 if ( finalName.equals( releaseModel.getArtifactId() + "-" 
+ snapshotVersion ) )
 {
-releaseModel.getBuild().setFinalName( 
releaseModel.getArtifactId() + "-" + projectVersion );
+releaseModel.getBuild().setFinalName( null );
 }
 else if ( finalName.indexOf( "SNAPSHOT" ) > -1 )
 {



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



[maven2 build - SUCCESS - update] Tue Sep 20 03:00:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.03.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.03.txt

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



[jira] Updated: (MNG-923) disappear in release-pom.xml

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-923?page=all ]

John Casey updated MNG-923:
---

   Fix Version: 2.0-beta-2
Remaining Estimate: 1 hour
 Original Estimate: 3600

>  disappear in release-pom.xml
> --
>
>  Key: MNG-923
>  URL: http://jira.codehaus.org/browse/MNG-923
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Versions: 2.0-beta-2
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 1 hour
> Remaining: 1 hour
>
> and we have continuum-api-null under build

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MNG-878) pom no longer correctly populated

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-878?page=all ]
 
John Casey closed MNG-878:
--

Resolution: Fixed

verified.

> pom no longer correctly populated
> -
>
>  Key: MNG-878
>  URL: http://jira.codehaus.org/browse/MNG-878
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 7 hours
> Remaining: 0 minutes
>
> problems with the release pom generated by the release plugin:
> - RELEASE is the populated version for a plugin, instead of being resolved
> - plugins used in the build process but not explicitly listed in the pom are 
> not populated
> - parent is not merge in

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MNG-921) release:perform must pass to m2 a profile to use if user provide one

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-921?page=all ]
 
John Casey closed MNG-921:
--

Resolution: Fixed

> release:perform must pass to m2 a profile to use if user provide one
> 
>
>  Key: MNG-921
>  URL: http://jira.codehaus.org/browse/MNG-921
>  Project: Maven 2
> Type: Improvement
>   Components: maven-release-plugin
> Versions: 2.0-beta-1
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 3 hours
> Remaining: 0 minutes
>


-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MNG-921) release:perform must pass to m2 a profile to use if user provide one

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-921?page=all ]

John Casey updated MNG-921:
---

Remaining Estimate: 3 hours  (was: 2 hours)
 Original Estimate: 10800  (was: 7200)

> release:perform must pass to m2 a profile to use if user provide one
> 
>
>  Key: MNG-921
>  URL: http://jira.codehaus.org/browse/MNG-921
>  Project: Maven 2
> Type: Improvement
>   Components: maven-release-plugin
> Versions: 2.0-beta-1
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
> Remaining: 3 hours
>


-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290336 - in /maven/components/trunk: maven-core-it/it2002/ maven-core-it/it2002/project/ maven-core-it/it2002/project/subproject/ maven-core-it/it2002/project/subproject2/ maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/p...

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 19:59:44 2005
New Revision: 290336

URL: http://svn.apache.org/viewcvs?rev=290336&view=rev
Log:
Resolving: MNG-878, MNG-921

o Verified that plugins are added to the list in the model when invoked from 
the command line (878)
o Reformatted ModelUtils after the profiles-cloning addition
o Added cache-flush for the plugin map in MavenProject
o Moved dependencies for subproject/subproject2 into the parent-project POM, 
inside a profile
o Added activation property for this new profile into the test.sh script
o Added explicit activation inside of release:perform's m2 invocation for all 
profile-ids active in the release-plugin's execution.
o Added code to remove the dynamic parts of the POM from the 
release-pom.xml...it's not meant to be a dynamic version of a POM.


Modified:
maven/components/trunk/maven-core-it/it2002/project/pom.xml
maven/components/trunk/maven-core-it/it2002/project/subproject/pom.xml
maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml
maven/components/trunk/maven-core-it/it2002/test.sh

maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PerformReleaseMojo.java

maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java

maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/MavenProject.java

maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

Modified: maven/components/trunk/maven-core-it/it2002/project/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/project/pom.xml?rev=290336&r1=290335&r2=290336&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/project/pom.xml (original)
+++ maven/components/trunk/maven-core-it/it2002/project/pom.xml Mon Sep 19 
19:59:44 2005
@@ -53,9 +53,8 @@
   
 
   
-org.apache.maven.plugins
-maven-compiler-plugin
-2.0-beta-1
+org.codehaus.modello
+modello-maven-plugin
   
 
   
@@ -64,9 +63,40 @@
 
   
 maven-project-info-reports-plugin
-2.0-alpha-1
+2.0-beta-1
   
 
   
+
+  
+
+  env-test
+  
+
+  env
+  test
+
+  
+
+  
+
+  org.apache.maven
+  maven-artifact
+  2.0-beta-1
+  test
+
+
+  org.apache.maven
+  maven-artifact-manager
+  2.0-beta-1
+  test
+
+  
+
+  
+alt-target
+  
+
+  
 
 

Modified: maven/components/trunk/maven-core-it/it2002/project/subproject/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/project/subproject/pom.xml?rev=290336&r1=290335&r2=290336&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/project/subproject/pom.xml 
(original)
+++ maven/components/trunk/maven-core-it/it2002/project/subproject/pom.xml Mon 
Sep 19 19:59:44 2005
@@ -8,19 +8,4 @@
 
   project-sub1
 
-  
-
-  org.apache.maven
-  maven-artifact
-  2.0-beta-1
-  test
-
-
-  org.apache.maven
-  maven-artifact-manager
-  2.0-beta-1
-  test
-
-  
-
 

Modified: 
maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml?rev=290336&r1=290335&r2=290336&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml 
(original)
+++ maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml Mon 
Sep 19 19:59:44 2005
@@ -14,30 +14,6 @@
   project-sub1
   1.0-SNAPSHOT
 
-
-  org.apache.maven
-  maven-artifact
-  2.0-beta-1
-  test
-
-
-  org.apache.maven
-  maven-artifact-manager
-  2.0-beta-1
-  test
-
   
-
-  
-
-  env-test
-  
-
-  env
-  test
-
-  
-
-  
 
 

Modified: maven/components/trunk/maven-core-it/it2002/test.sh
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/test.sh?rev=290336&r1=290335&r2=290336&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/test.sh (original)
+++ maven/components/trunk/maven-core-it/it2002/test.sh Mon Sep 19 19:59:44 2005
@@ -18,11 +18,7 @@
 
 rm -Rf target
 
-#. ~/shell-switches/m2-debug-on
-#echo "Enabling debugging options. Please attach the debugger."
+m2 -e release:prepare -Denv=test
 
-export MAVEN_OPTS=
-m2 -e release:prepare
-
-m2 -e release:perform
+m2 -e rele

[jira] Updated: (MNG-859) Maven compiler plugin documentation

2005-09-19 Thread Johnny R. Ruiz III (JIRA)
 [ http://jira.codehaus.org/browse/MNG-859?page=all ]

Johnny R. Ruiz III updated MNG-859:
---

Attachment: MNG-859.patch

Update Patch.  Documentation.

> Maven compiler plugin documentation
> ---
>
>  Key: MNG-859
>  URL: http://jira.codehaus.org/browse/MNG-859
>  Project: Maven 2
> Type: Improvement
> Reporter: allan ramirez
> Assignee: Johnny R. Ruiz III
> Priority: Minor
>  Fix For: 2.0
>  Attachments: MNG-859.patch
>
> Original Estimate: 8 hours
>Time Spent: 5 hours
> Remaining: 3 hours
>
> Add java doc and apt doc for an overview

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[continuum build - FAILED - checkout] Tue Sep 20 01:30:01 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050920.013001.txt


[jira] Commented: (MAVENUPLOAD-502) Please upload Maven Hammurapi Plugin

2005-09-19 Thread Arun Nachimuthu (JIRA)
[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-502?page=comments#action_46691 ] 

Arun Nachimuthu commented on MAVENUPLOAD-502:
-

removed the extends manually.

I use maven 1.1 beta and it still didnot remove them automatically (maven 
create-upload-bundle), is there something specific i have to do?

> Please upload Maven Hammurapi Plugin
> 
>
>  Key: MAVENUPLOAD-502
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-502
>  Project: maven-upload-requests
> Type: Task
> Reporter: Arun Nachimuthu
>  Attachments: maven-hammurapi-plugin-1.0-bundle.jar
>
>
> Please upload Maven Hammurapi Plugin
> https://maven-plugins.dev.java.net/files/documents/3784/20047/maven-hammurapi-plugin-1.0-bundle.jar

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MAVENUPLOAD-502) Please upload Maven Hammurapi Plugin

2005-09-19 Thread Arun Nachimuthu (JIRA)
 [ http://jira.codehaus.org/browse/MAVENUPLOAD-502?page=all ]

Arun Nachimuthu updated MAVENUPLOAD-502:


Attachment: maven-hammurapi-plugin-1.0-bundle.jar

> Please upload Maven Hammurapi Plugin
> 
>
>  Key: MAVENUPLOAD-502
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-502
>  Project: maven-upload-requests
> Type: Task
> Reporter: Arun Nachimuthu
>  Attachments: maven-hammurapi-plugin-1.0-bundle.jar
>
>
> Please upload Maven Hammurapi Plugin
> https://maven-plugins.dev.java.net/files/documents/3784/20047/maven-hammurapi-plugin-1.0-bundle.jar

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[continuum build - FAILED - update] Tue Sep 20 01:00:00 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050920.01.txt


[jira] Reopened: (MNG-878) pom no longer correctly populated

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-878?page=all ]
 
John Casey reopened MNG-878:



looks like we can actually incorporate the plugins from the command line. I'm 
reopening in order to verify that it's working correctly.

> pom no longer correctly populated
> -
>
>  Key: MNG-878
>  URL: http://jira.codehaus.org/browse/MNG-878
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 7 hours
> Remaining: 0 minutes
>
> problems with the release pom generated by the release plugin:
> - RELEASE is the populated version for a plugin, instead of being resolved
> - plugins used in the build process but not explicitly listed in the pom are 
> not populated
> - parent is not merge in

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[maven2 build - SUCCESS - checkout] Tue Sep 20 00:15:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050920.001501.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050920.001501.txt

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



Re: svn commit: r290276 - in /maven/components/trunk: maven-core-it/it2002/project/subproject2/pom.xml maven-plugins/maven-release-plugin/pom.xml maven-plugins/maven-surefire-plugin/pom.xml maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

2005-09-19 Thread John Casey

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Brett,

Put it back to 2.0-beta-2-SNAPSHOT, then run test.sh under
maven-core-it/it2002, and you'll see why.

Brett Porter wrote:
| I also don't understand why it was necessary.
|
|
| Emmanuel Venisse wrote:
|
|
|>jdcasey,
|>
|>I suppose it's a temporary version ;-)
|>
|>Emmanuel
|>
|>
|>>Modified:
|>>maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
|>>URL:
|>>http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
|>>
|>>==
|>>
|>>--- maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
|>>(original)
|>>+++ maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
|>>Mon Sep 19 14:24:40 2005
|>>@@ -8,7 +8,7 @@
|>>   maven-release-plugin
|>>   maven-plugin
|>>   Maven Release plugin
|>>-  2.0-beta-2-SNAPSHOT
|>>+  2.0-beta-1-rev1
|>>   
|>
|>
|>
|>
|>-
|>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]
|
|
|
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)

iD8DBQFDL1bZK3h2CZwO/4URAsoSAJoCqKAO6jRs3ts+Tji1rsILcCpyjQCfRA2Q
zgdGyKwj+82i+IpPXjnyQDo=
=O4pv
-END PGP SIGNATURE-

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



[jira] Created: (MNG-924) version in pom.xml doens't bump

2005-09-19 Thread Emmanuel Venisse (JIRA)
version in pom.xml doens't bump
---

 Key: MNG-924
 URL: http://jira.codehaus.org/browse/MNG-924
 Project: Maven 2
Type: Bug
  Components: maven-release-plugin  
Versions: 2.0-beta-2
 Reporter: Emmanuel Venisse
 Assigned to: John Casey 
 Fix For: 2.0-beta-2


I think it's related to MNG-923

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MNG-923) disappear in release-pom.xml

2005-09-19 Thread Emmanuel Venisse (JIRA)
 [ http://jira.codehaus.org/browse/MNG-923?page=all ]

Emmanuel Venisse updated MNG-923:
-

Assign To: John Casey
  Version: 2.0-beta-2
Component: maven-release-plugin

>  disappear in release-pom.xml
> --
>
>  Key: MNG-923
>  URL: http://jira.codehaus.org/browse/MNG-923
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Versions: 2.0-beta-2
> Reporter: Emmanuel Venisse
> Assignee: John Casey

>
>
> and we have continuum-api-null under build

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (MNG-923) disappear in release-pom.xml

2005-09-19 Thread Emmanuel Venisse (JIRA)
 disappear in release-pom.xml
--

 Key: MNG-923
 URL: http://jira.codehaus.org/browse/MNG-923
 Project: Maven 2
Type: Bug
 Reporter: Emmanuel Venisse


and we have continuum-api-null under build

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MNG-919) Installation with symlinks

2005-09-19 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-919?page=all ]
 
Brett Porter closed MNG-919:


Resolution: Duplicate

> Installation with symlinks
> --
>
>  Key: MNG-919
>  URL: http://jira.codehaus.org/browse/MNG-919
>  Project: Maven 2
> Type: Improvement
>   Components: maven-core
> Versions: 2.0-beta-1
>  Environment: Linux/Unix
> Reporter: Alex Wood
>  Attachments: m2-failed-start.txt
>
>
> When trying to install the Maven 2 beta, I followed the instructions 
> available at http://maven.apache.org/maven2/download.html
> However, I did not set my $PATH to include a reference to the Maven 2 
> directory.  I prefer to keep my $PATH very short and so I put a symlink to m2 
> in /usr/local/bin.  When I tried to start Maven 2, I received the following 
> message:
> Exception in thread "main" java.lang.NoClassDefFoundError: 
> org/codehaus/classworlds/Launcher
> After looking at the m2 shell script, I noticed the reference to $M2_HOME was 
> not being set correctly.  After setting that variable correctly, Maven 2 
> started without a problem.
> I've attached the output of bash -x for a failed startup.  It looks to me 
> like the problem is in this section
>  ## resolve links - $0 may be a link to maven's home
>   PRG="$0"
>   saveddir=`pwd`
>   # need this for relative symlinks
>   PRGDIR=`dirname "$PRG"`
>   cd "$PRGDIR"
>   while [ -h "$PRG" ] ; do
>  [...]
> Since my symlink was in my path, PRG got set to just "m2" which fouled the 
> rest of the script.  Using 'which' might help here.
> 
> Regards,
> Alex

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MNG-834) handle repository permissions

2005-09-19 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-834?page=all ]
 
Brett Porter closed MNG-834:


 Resolution: Duplicate
Fix Version: (was: 2.0-beta-2)

> handle repository permissions
> -
>
>  Key: MNG-834
>  URL: http://jira.codehaus.org/browse/MNG-834
>  Project: Maven 2
> Type: Improvement
>   Components: maven-model, maven-archiver
> Reporter: Juan F. Codagnone

>
>
> it would be nice to have a way to set the directory/file permission and group 
> to the remote repositories.
> the wagon api already supports those permisions and the implementation almost 
> handle them ( WAGONSSH-8 WAGONSSH-9).
> A way to declare this permissions is missing . I was thinking to change the 
> pom schma to allow something like:
> 
>ssh-test
>a test for wagon-ssh
>sftp://localhost/tmp/m2/
>default
>
>   770
>   770
>   users
>
> 
> but it can be also set it up in the plugin configuration.
> I am willing to code it (i want the feature to be able to set up a private 
> repository over ssh), but i need a senior decision for the way to configure 
> it.
> Juan.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Reopened: (MNG-834) handle repository permissions

2005-09-19 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-834?page=all ]
 
Brett Porter reopened MNG-834:
--


removing fix for

> handle repository permissions
> -
>
>  Key: MNG-834
>  URL: http://jira.codehaus.org/browse/MNG-834
>  Project: Maven 2
> Type: Improvement
>   Components: maven-model, maven-archiver
> Reporter: Juan F. Codagnone

>
>
> it would be nice to have a way to set the directory/file permission and group 
> to the remote repositories.
> the wagon api already supports those permisions and the implementation almost 
> handle them ( WAGONSSH-8 WAGONSSH-9).
> A way to declare this permissions is missing . I was thinking to change the 
> pom schma to allow something like:
> 
>ssh-test
>a test for wagon-ssh
>sftp://localhost/tmp/m2/
>default
>
>   770
>   770
>   users
>
> 
> but it can be also set it up in the plugin configuration.
> I am willing to code it (i want the feature to be able to set up a private 
> repository over ssh), but i need a senior decision for the way to configure 
> it.
> Juan.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



Re: svn commit: r290276 - in /maven/components/trunk: maven-core-it/it2002/project/subproject2/pom.xml maven-plugins/maven-release-plugin/pom.xml maven-plugins/maven-surefire-plugin/pom.xml maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

2005-09-19 Thread Brett Porter
I also don't understand why it was necessary.


Emmanuel Venisse wrote:

> jdcasey,
>
> I suppose it's a temporary version ;-)
>
> Emmanuel
>
>> Modified:
>> maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
>> URL:
>> http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
>>
>> ==
>>
>> --- maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
>> (original)
>> +++ maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
>> Mon Sep 19 14:24:40 2005
>> @@ -8,7 +8,7 @@
>>maven-release-plugin
>>maven-plugin
>>Maven Release plugin
>> -  2.0-beta-2-SNAPSHOT
>> +  2.0-beta-1-rev1
>>
>
>
>
>
> -
> 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] Closed: (MAVENUPLOAD-523) iCal4j 0.9.15 - Maven bundle

2005-09-19 Thread Carlos Sanchez (JIRA)
 [ http://jira.codehaus.org/browse/MAVENUPLOAD-523?page=all ]
 
Carlos Sanchez closed MAVENUPLOAD-523:
--

 Assign To: Carlos Sanchez
Resolution: Fixed

> iCal4j 0.9.15 - Maven bundle
> 
>
>  Key: MAVENUPLOAD-523
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-523
>  Project: maven-upload-requests
> Type: Task
> Reporter: Ben Fortuna
> Assignee: Carlos Sanchez

>
>
> http://ical4j.sourceforge.net/maven/ical4j-0.9.15-bundle.jar
> http://ical4j.sourceforge.net
> http://sourceforge.net/users/fortuna
> A Java library for reading and writing iCalendar (*.ics) files.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MAVENUPLOAD-520) Upload newer version of msv

2005-09-19 Thread Carlos Sanchez (JIRA)
 [ http://jira.codehaus.org/browse/MAVENUPLOAD-520?page=all ]
 
Carlos Sanchez closed MAVENUPLOAD-520:
--

 Assign To: Carlos Sanchez
Resolution: Fixed

> Upload newer version of msv
> ---
>
>  Key: MAVENUPLOAD-520
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-520
>  Project: maven-upload-requests
> Type: Task
> Reporter: Lukas Theussl
> Assignee: Carlos Sanchez

>
>
> http://people.apache.org/~ltheussl/msv/jars/msv-msv-bundle.jar
> http://people.apache.org/~ltheussl/msv/jars/msv-isorelax-bundle.jar
> http://people.apache.org/~ltheussl/msv/jars/msv-relaxngDatatype-bundle.jar
> http://people.apache.org/~ltheussl/msv/jars/msv-xsdlib-bundle.jar
> https://msv.dev.java.net/
> Please upload a newer version of msv, it solves some problems we have with 
> xdoc:validate and pom:validate goals. Thanks!

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MAVENUPLOAD-519) Jini 2.1 Beta 2 Jars

2005-09-19 Thread Carlos Sanchez (JIRA)
[ 
http://jira.codehaus.org/browse/MAVENUPLOAD-519?page=comments#action_46683 ] 

Carlos Sanchez commented on MAVENUPLOAD-519:


You need to provide a bundle for each jar

> Jini 2.1 Beta 2 Jars
> 
>
>  Key: MAVENUPLOAD-519
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-519
>  Project: maven-upload-requests
> Type: Task
> Reporter: Chris Sterling

>
>
> http://daredskin.homedns.org/jini-2.1-beta2-BUNDLE.jar
> http://www.jini.org/
> This is as close to a team link that I could find:
> http://www.jini.org/Contrib_Award/index.html
> Jini version 2.x has recently licensed the specifications and reference 
> implementations as FOSS under the Apache 2.0 license.  I think it would be 
> great to have the Jini base jars in the Maven repository to support a Maven 
> Jini Plug-in that I will be providing in the very near future.  Thank you.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[maven2 build - SUCCESS - update] Mon Sep 19 22:15:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050919.221500.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.221500.txt

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



[jira] Closed: (MAVENUPLOAD-521) Please create POM for javax.naming

2005-09-19 Thread Carlos Sanchez (JIRA)
 [ http://jira.codehaus.org/browse/MAVENUPLOAD-521?page=all ]
 
Carlos Sanchez closed MAVENUPLOAD-521:
--

 Assign To: Carlos Sanchez
Resolution: Fixed

> Please create POM for javax.naming
> --
>
>  Key: MAVENUPLOAD-521
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-521
>  Project: maven-upload-requests
> Type: Wish
> Reporter: Henning Schmiedehausen
> Assignee: Carlos Sanchez

>
>
> Like some other POMs (javax.mail, javax.sql), javax.naming describes an 
> additional jar that cannot currently be distributed through ibiblio. However, 
> having a POM there, would help projects that consider moving to m2 but use 
> this jar.
> 
>   4.0.0
>   javax.naming
>   jndi
>   1.2.1
> 
> would be fine.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290291 - /maven/maven-1/core/trunk/xdocs/reference/standard-sun-jar-names.xml

2005-09-19 Thread carlos
Author: carlos
Date: Mon Sep 19 15:23:52 2005
New Revision: 290291

URL: http://svn.apache.org/viewcvs?rev=290291&view=rev
Log:
Added JNDI

Modified:
maven/maven-1/core/trunk/xdocs/reference/standard-sun-jar-names.xml

Modified: maven/maven-1/core/trunk/xdocs/reference/standard-sun-jar-names.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/xdocs/reference/standard-sun-jar-names.xml?rev=290291&r1=290290&r2=290291&view=diff
==
--- maven/maven-1/core/trunk/xdocs/reference/standard-sun-jar-names.xml 
(original)
+++ maven/maven-1/core/trunk/xdocs/reference/standard-sun-jar-names.xml Mon Sep 
19 15:23:52 2005
@@ -101,6 +101,9 @@
 
   Portletjavax.portletportlet-api
 
+
+  JNDIjavax.namingjndi
+
   
 
   



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



[jira] Closed: (MAVENUPLOAD-522) Please update POM for javax.mail

2005-09-19 Thread Carlos Sanchez (JIRA)
 [ http://jira.codehaus.org/browse/MAVENUPLOAD-522?page=all ]
 
Carlos Sanchez closed MAVENUPLOAD-522:
--

 Assign To: Carlos Sanchez
Resolution: Fixed

Added to groupId javax.mail

> Please update POM for javax.mail
> 
>
>  Key: MAVENUPLOAD-522
>  URL: http://jira.codehaus.org/browse/MAVENUPLOAD-522
>  Project: maven-upload-requests
> Type: Wish
> Reporter: Henning Schmiedehausen
> Assignee: Carlos Sanchez

>
>
> javamail 1.3.3 is out:
> 
>   4.0.0
>   javamail
>   mail
>   1.3.3
>   
> 
>   javax.activation
>   activation
>   1.0.2
>   compile
> 
>   
> 

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MEV-87) Httpunit 1.6 dependencies

2005-09-19 Thread Carlos Sanchez (JIRA)
 [ http://jira.codehaus.org/browse/MEV-87?page=all ]
 
Carlos Sanchez closed MEV-87:
-

 Assign To: Carlos Sanchez
Resolution: Fixed

> Httpunit 1.6 dependencies
> -
>
>  Key: MEV-87
>  URL: http://jira.codehaus.org/browse/MEV-87
>  Project: Maven Evangelism
> Type: Bug
>   Components: Dependencies
> Reporter: fabrizio giustina
> Assignee: Carlos Sanchez
>  Attachments: httpunit-1.6.pom
>
>
> the attached pom adds a missing jtidy dependency, fix deprecated servletapi 
> group and adds test-only dependencies.
> This is a prerequisite also for fixing MEV-85

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



Re: svn commit: r290276 - in /maven/components/trunk: maven-core-it/it2002/project/subproject2/pom.xml maven-plugins/maven-release-plugin/pom.xml maven-plugins/maven-surefire-plugin/pom.xml maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

2005-09-19 Thread Emmanuel Venisse

jdcasey,

I suppose it's a temporary version ;-)

Emmanuel


Modified: maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
==
--- maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml (original)
+++ maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml Mon Sep 
19 14:24:40 2005
@@ -8,7 +8,7 @@
   maven-release-plugin
   maven-plugin
   Maven Release plugin
-  2.0-beta-2-SNAPSHOT
+  2.0-beta-1-rev1
   




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



[jira] Closed: (MNG-834) handle repository permissions

2005-09-19 Thread Kenney Westerhof (JIRA)
 [ http://jira.codehaus.org/browse/MNG-834?page=all ]
 
Kenney Westerhof closed MNG-834:


Resolution: Duplicate

Duplicate of MNG-575.

If you want a go at it, go ahead!
Your proposal looks good, but it requires a POM change. Maybe it's
best left for settings.xml where the user/server is configured.

> handle repository permissions
> -
>
>  Key: MNG-834
>  URL: http://jira.codehaus.org/browse/MNG-834
>  Project: Maven 2
> Type: Improvement
>   Components: maven-model, maven-archiver
> Reporter: Juan F. Codagnone
>  Fix For: 2.0-beta-2

>
>
> it would be nice to have a way to set the directory/file permission and group 
> to the remote repositories.
> the wagon api already supports those permisions and the implementation almost 
> handle them ( WAGONSSH-8 WAGONSSH-9).
> A way to declare this permissions is missing . I was thinking to change the 
> pom schma to allow something like:
> 
>ssh-test
>a test for wagon-ssh
>sftp://localhost/tmp/m2/
>default
>
>   770
>   770
>   users
>
> 
> but it can be also set it up in the plugin configuration.
> I am willing to code it (i want the feature to be able to set up a private 
> repository over ssh), but i need a senior decision for the way to configure 
> it.
> Juan.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[maven2 build - FAILED - update] Mon Sep 19 22:00:00 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.22.txt

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



[maven2 build - FAILED - update] Mon Sep 19 21:45:00 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.214500.txt

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



[maven2 build - FAILED - update] Mon Sep 19 21:30:00 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.213001.txt

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



Maven xsd

2005-09-19 Thread Lukas Theussl


I am currently re-writing the validation routines for the pom:validate 
and xdoc:validate goals and I'd like to ask a question about the current 
maven-project-3.xsd used by m11b2. According to this schema, every 
project.xml should have a namespace declaration in the  element:


http://maven.apache.org/POM/3.0.0";>

in order to be valid. We would have to rewrite a lot of pugin poms in 
order to comply with this schema and I didn't find any docs on that, so 
I'm wondering if this is intentional. It also means that poms that were 
valid in m1.0 are not anymore in m1.1. Are there any objections to 
removing this namespace requirement from the xsd?


Cheers,
Lukas

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



Re: [M2] Out of memory exceptions

2005-09-19 Thread Brett Porter
Though the devs are interested to hear what memory usage you were
encountering...

Cocoon could be a good test case to see if we can reduce the amount of
memory used.

- Brett

Carsten Ziegeler wrote:

>Kenney Westerhof schrieb:
>  
>
>>On Mon, 19 Sep 2005, Carsten Ziegeler wrote:
>>
>>Yes, set the environment variable MAVEN_OPTS; it's value is passed
>>as JVM arguments.
>>
>>
>>
>Ok, thanks
>
>  
>
>>Btw this is a typical user question, you best use the users list for these
>>types of questions.
>>
>>
>>
>Yepp, you're right - sorry!
>
>Carsten
>
>
>  
>

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



[jira] Closed: (MNG-920) Release plugin doesn't keep profiles in release pom

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-920?page=all ]
 
John Casey closed MNG-920:
--

Resolution: Fixed

> Release plugin doesn't keep profiles in release pom
> ---
>
>  Key: MNG-920
>  URL: http://jira.codehaus.org/browse/MNG-920
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Versions: 2.0-beta-1
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 2 hours
>Time Spent: 2 hours
> Remaining: 0 minutes
>


-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290276 - in /maven/components/trunk: maven-core-it/it2002/project/subproject2/pom.xml maven-plugins/maven-release-plugin/pom.xml maven-plugins/maven-surefire-plugin/pom.xml maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 14:24:40 2005
New Revision: 290276

URL: http://svn.apache.org/viewcvs?rev=290276&view=rev
Log:
Resolving: MNG-920, and setting the version of maven-release-plugin to a rev of 
-beta-1 instead of -SNAPSHOT, to allow locally installed versions to work 
without tweaking the version locally.

Modified:
maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml
maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
maven/components/trunk/maven-plugins/maven-surefire-plugin/pom.xml

maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/ModelUtils.java

Modified: 
maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
==
--- maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml 
(original)
+++ maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml Mon 
Sep 19 14:24:40 2005
@@ -28,4 +28,16 @@
 
   
 
+  
+
+  env-test
+  
+
+  env
+  test
+
+  
+
+  
+
 

Modified: maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
==
--- maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml (original)
+++ maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml Mon Sep 
19 14:24:40 2005
@@ -8,7 +8,7 @@
   maven-release-plugin
   maven-plugin
   Maven Release plugin
-  2.0-beta-2-SNAPSHOT
+  2.0-beta-1-rev1
   
 
   org.apache.maven

Modified: maven/components/trunk/maven-plugins/maven-surefire-plugin/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-surefire-plugin/pom.xml?rev=290276&r1=290275&r2=290276&view=diff
==
--- maven/components/trunk/maven-plugins/maven-surefire-plugin/pom.xml 
(original)
+++ maven/components/trunk/maven-plugins/maven-surefire-plugin/pom.xml Mon Sep 
19 14:24:40 2005
@@ -29,13 +29,13 @@
 
   surefire
   surefire
-  1.3
+  1.4-SNAPSHOT
   runtime
 
 
   surefire
   surefire-booter
-  1.3
+  1.4-SNAPSHOT
 
 
   plexus
@@ -44,4 +44,4 @@
   runtime
 
   
-
\ No newline at end of file
+

Modified: 
maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/ModelUtils.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/ModelUtils.java?rev=290276&r1=290275&r2=290276&view=diff
==
--- 
maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/ModelUtils.java
 (original)
+++ 
maven/components/trunk/maven-project/src/main/java/org/apache/maven/project/ModelUtils.java
 Mon Sep 19 14:24:40 2005
@@ -16,16 +16,32 @@
  * limitations under the License.
  */
 
+import org.apache.maven.model.Activation;
+import org.apache.maven.model.ActivationFile;
+import org.apache.maven.model.ActivationProperty;
+import org.apache.maven.model.Build;
+import org.apache.maven.model.BuildBase;
+import org.apache.maven.model.Dependency;
+import org.apache.maven.model.DependencyManagement;
+import org.apache.maven.model.DistributionManagement;
+import org.apache.maven.model.Exclusion;
 import org.apache.maven.model.Goal;
 import org.apache.maven.model.Model;
 import org.apache.maven.model.Parent;
 import org.apache.maven.model.Plugin;
 import org.apache.maven.model.PluginContainer;
 import org.apache.maven.model.PluginExecution;
+import org.apache.maven.model.PluginManagement;
+import org.apache.maven.model.Profile;
+import org.apache.maven.model.Relocation;
 import org.apache.maven.model.ReportPlugin;
 import org.apache.maven.model.ReportSet;
 import org.apache.maven.model.Reporting;
 import org.apache.maven.model.Repository;
+import org.apache.maven.model.RepositoryBase;
+import org.apache.maven.model.RepositoryPolicy;
+import org.apache.maven.model.Resource;
+import org.apache.maven.model.Site;
 import org.apache.maven.project.inheritance.DefaultModelInheritanceAssembler;
 import org.apache.maven.project.inheritance.ModelInheritanceAssembler;
 import org.codehaus.plexus.util.xml.Xpp3Dom;
@@ -470,9 +486,503 @@
 newModel.setGroupId( model.getGroupId() );
 newModel.setPackaging( model.getPackaging() );
 newModel.setModules( cloneModules( model.getModules() ) );
+
+newModel.setProfiles( cloneProfiles( model.getProfiles() ) );
+
 assembler.copyModel( newModel

Re: svn commit: r290250 - in /maven/continuum/trunk: continuum-plexus-application/pom.xml pom.xml

2005-09-19 Thread Brett Porter
I thought XFire was working now?

- Brett

[EMAIL PROTECTED] wrote:

>Author: evenisse
>Date: Mon Sep 19 12:42:46 2005
>New Revision: 290250
>
>URL: http://svn.apache.org/viewcvs?rev=290250&view=rev
>Log:
>o Fix final name
>o Remove continuum-xfire from dependency management
>
>Modified:
>maven/continuum/trunk/continuum-plexus-application/pom.xml
>maven/continuum/trunk/pom.xml
>
>Modified: maven/continuum/trunk/continuum-plexus-application/pom.xml
>URL: 
>http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/pom.xml?rev=290250&r1=290249&r2=290250&view=diff
>==
>--- maven/continuum/trunk/continuum-plexus-application/pom.xml (original)
>+++ maven/continuum/trunk/continuum-plexus-application/pom.xml Mon Sep 19 
>12:42:46 2005
>@@ -211,7 +211,7 @@
> 
>   src/assembly/bin.xml
>   
>-  continuum-1.0-alpha-4-SNAPSHOT
>+  continuum-1.0-alpha-4
> 
> 
>   
>
>Modified: maven/continuum/trunk/pom.xml
>URL: 
>http://svn.apache.org/viewcvs/maven/continuum/trunk/pom.xml?rev=290250&r1=290249&r2=290250&view=diff
>==
>--- maven/continuum/trunk/pom.xml (original)
>+++ maven/continuum/trunk/pom.xml Mon Sep 19 12:42:46 2005
>@@ -149,11 +149,13 @@
> continuum-web
> 1.0-alpha-4-SNAPSHOT
>   
>+  
>   
> org.apache.maven.continuum
> continuum-xmlrpc
>
>
>  
>


RE: Eclipse, WTP and Maven directory structure

2005-09-19 Thread Arnaud HERITIER
The proposed directory layout is the old one in maven 1.
Perhaps, should we say to them what the new project's layout is ?

Arnaud

> 
> 
> So go ahead and vote for it! Popular request does influence them.
> :)
> 
> Vincent Massol wrote:
> 
> > I should have mentioned that the pointer to the link below was 
> > provided by Thomas.
> > 
> > Thanks Thomas!
> > -Vincent
> > 
> >> -Original Message-
> >> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> >> Behalf Of Thomas Van de Velde
> >> Sent: lundi 19 septembre 2005 18:39
> >> To: Maven Developers List
> >> Subject: Re: Eclipse, WTP and Maven directory structure
> >> 
> >> You can also refer to the following issue in Eclipse WTP's 
> bugzilla:
> >> 
> >> https://bugs.eclipse.org/bugs/show_bug.cgi?id=102981
> >> 
> >> Cheers,
> >> Thomas
> >> 
> >> On 9/19/05, Vincent Massol <[EMAIL PROTECTED]> wrote:
> >> >
> >> > Hi,
> >> >
> >> > FYI, it seems the Eclipse WTP team is considering supporting 
> >> > flexible source directory organization. They have listed 3 
> >> > scenarios and one of them is
> >> > Maven:
> >> >
> >> > http://tinyurl.com/9jn7s
> >> > (scroll down to scenario 2 for the Maven part)
> >> >
> >> > -Vincent
> 
> 
> 
> -
> 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: Eclipse, WTP and Maven directory structure

2005-09-19 Thread Jörg Schaible

So go ahead and vote for it! Popular request does influence them.
:)

Vincent Massol wrote:

> I should have mentioned that the pointer to the link below was provided by
> Thomas.
> 
> Thanks Thomas!
> -Vincent
> 
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
>> Behalf Of Thomas Van de Velde
>> Sent: lundi 19 septembre 2005 18:39
>> To: Maven Developers List
>> Subject: Re: Eclipse, WTP and Maven directory structure
>> 
>> You can also refer to the following issue in Eclipse WTP's bugzilla:
>> 
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=102981
>> 
>> Cheers,
>> Thomas
>> 
>> On 9/19/05, Vincent Massol <[EMAIL PROTECTED]> wrote:
>> >
>> > Hi,
>> >
>> > FYI, it seems the Eclipse WTP team is considering supporting flexible
>> > source
>> > directory organization. They have listed 3 scenarios and one of them is
>> > Maven:
>> >
>> > http://tinyurl.com/9jn7s
>> > (scroll down to scenario 2 for the Maven part)
>> >
>> > -Vincent



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



[maven2 build - SUCCESS - update] Mon Sep 19 20:30:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050919.203000.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.203000.txt

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



svn commit: r290257 - /maven/components/trunk/maven-core-it/integration-tests.txt

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 13:26:01 2005
New Revision: 290257

URL: http://svn.apache.org/viewcvs?rev=290257&view=rev
Log:
Commenting out it0063 until I can get it to work.

Modified:
maven/components/trunk/maven-core-it/integration-tests.txt

Modified: maven/components/trunk/maven-core-it/integration-tests.txt
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/integration-tests.txt?rev=290257&r1=290256&r2=290257&view=diff
==
--- maven/components/trunk/maven-core-it/integration-tests.txt (original)
+++ maven/components/trunk/maven-core-it/integration-tests.txt Mon Sep 19 
13:26:01 2005
@@ -2,7 +2,7 @@
 it0066
 it0065
 it0064
-it0063
+#it0063
 it0062
 it0061
 it0060



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



[jira] Updated: (MPPOM-1) pom:validate does not work with

2005-09-19 Thread Lukas Theussl (JIRA)
 [ http://jira.codehaus.org/browse/MPPOM-1?page=all ]

Lukas Theussl updated MPPOM-1:
--

  Assign To: Lukas Theussl
Fix Version: 1.4.2
Environment: 

> pom:validate does not work with 
> 
>
>  Key: MPPOM-1
>  URL: http://jira.codehaus.org/browse/MPPOM-1
>  Project: maven-pom-plugin
> Type: Bug
> Reporter: Vincent Massol
> Assignee: Lukas Theussl
>  Fix For: 1.4.2

>
>
> For example, in the Maven plugins if you type maven pom:validate you get 
> several errors even though the missing elements are defined in the parent 
> project.xml.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MPPOM-5) pom:validate doesn't work in maven-1.1-beta-1

2005-09-19 Thread Lukas Theussl (JIRA)
 [ http://jira.codehaus.org/browse/MPPOM-5?page=all ]

Lukas Theussl updated MPPOM-5:
--

Fix Version: 1.4.2

> pom:validate doesn't work in maven-1.1-beta-1
> -
>
>  Key: MPPOM-5
>  URL: http://jira.codehaus.org/browse/MPPOM-5
>  Project: maven-pom-plugin
> Type: Bug
> Versions: 1.4.1
>  Environment: Windows 2000, JDK 1.4.2_07
> Reporter: Davy Toch
> Assignee: Lukas Theussl
>  Fix For: 1.4.2
>  Attachments: project.xml
>
>
> Using the genapp plugin (2.2) of Maven-1.1-beta-1, I created a simple jar 
> project.
> Running pom:validate on the POM gave errors due to the fact that project.xml 
> generated by the genapp plugin isn't a model-3.0.0 POM, because e.g. the 
>  element generated by the genapp wizard isn't defined in the 
> model-3.0.0 xsd. So I modified project.xml in order to be conform with the 
> model-3.0.0 xsd. However running pom:validate still gives the following error:
> ~~~
> $maven -e pom:validate
>  __  __
> |  \/  |__ _Apache__ ___
> | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
> |_|  |_\__,_|\_/\___|_||_|  v. 1.1-beta-1
> build:start:
> pom:verify-version:
> pom:validate:
> [echo] == CUSTOM ADDED IN POM PLUGIN 
> [echo] XSD file : c:\devtools\maven-1.1-beta-1/maven-project-3.xsd
> [echo] POM file : C:\tmp\myapp\project.xml
> [echo] ===
> [java] C:\tmp\myapp\project.xml:19:10: error: cvc-elt.1: Cannot find the 
> declaration of element 'project'.
> [java] [ERROR] Java Result: 1
> BUILD SUCCESSFUL
> Total time   : 4 seconds
> Finished at  : zondag 31 juli 2005 12:58:49 CEST
> ~~~
> The POM file project.xml is included as attachment.
> Additional question : is the pom plugin still necessary from maven-1.1-beta-1 
> onwards, because I thought the Maven core would verify more strictly the POM 
> itself (cf http://maven.apache.org/reference/backwards-compatibility.html)?
> Regards,
> Davy Toch

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MPPOM-2) pom:update goal contains no definition

2005-09-19 Thread Lukas Theussl (JIRA)
 [ http://jira.codehaus.org/browse/MPPOM-2?page=all ]
 
Lukas Theussl closed MPPOM-2:
-

 Resolution: Fixed
Fix Version: 1.4.1

The goal pom:update has been removed in revision 114985 , also the 
documentation has been updated.

> pom:update goal contains no definition
> --
>
>  Key: MPPOM-2
>  URL: http://jira.codehaus.org/browse/MPPOM-2
>  Project: maven-pom-plugin
> Type: Bug
>  Environment: All
> Reporter: Martin Lambert
>  Fix For: 1.4.1

>
>
> Below is the definition of the pom:update goal in Maven 1.0-rc1, this is also 
> the same in 1.0 Beta:
>  name="pom:update"
> description="Update the POM from its current version to a specified 
> version">
> 
> This goal obviously doesn't work.
> Cheers,
> Martin.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[continuum build - SUCCESS - update] Mon Sep 19 20:00:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~continuum/builds/continuum-20050919.21.tar.gz

Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050919.21.txt


[continuum build - SUCCESS - update] Mon Sep 19 19:30:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~continuum/builds/continuum-20050919.193000.tar.gz

Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050919.193000.txt


[maven2 build - SUCCESS - update] Mon Sep 19 19:15:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050919.191500.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.191500.txt

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



[jira] Updated: (MNG-920) Release plugin doesn't keep profiles in release pom

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-920?page=all ]

John Casey updated MNG-920:
---

   Fix Version: 2.0-beta-2
Remaining Estimate: 2 hours
 Original Estimate: 7200

> Release plugin doesn't keep profiles in release pom
> ---
>
>  Key: MNG-920
>  URL: http://jira.codehaus.org/browse/MNG-920
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Versions: 2.0-beta-1
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 2 hours
> Remaining: 2 hours
>


-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MNG-921) release:perform must pass to m2 a profile to use if user provide one

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-921?page=all ]

John Casey updated MNG-921:
---

   Fix Version: 2.0-beta-2
Remaining Estimate: 2 hours
 Original Estimate: 7200

> release:perform must pass to m2 a profile to use if user provide one
> 
>
>  Key: MNG-921
>  URL: http://jira.codehaus.org/browse/MNG-921
>  Project: Maven 2
> Type: Improvement
>   Components: maven-release-plugin
> Versions: 2.0-beta-1
> Reporter: Emmanuel Venisse
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 2 hours
> Remaining: 2 hours
>


-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290242 - /maven/components/trunk/maven-plugins/pom.xml

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 12:11:42 2005
New Revision: 290242

URL: http://svn.apache.org/viewcvs?rev=290242&view=rev
Log:
Oops. Didn't mean to check that in.

Modified:
maven/components/trunk/maven-plugins/pom.xml

Modified: maven/components/trunk/maven-plugins/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/pom.xml?rev=290242&r1=290241&r2=290242&view=diff
==
--- maven/components/trunk/maven-plugins/pom.xml (original)
+++ maven/components/trunk/maven-plugins/pom.xml Mon Sep 19 12:11:42 2005
@@ -152,7 +152,7 @@
 maven-assembly-plugin
 maven-checkstyle-plugin
 maven-clean-plugin
-
+maven-clover-plugin
 maven-compiler-plugin
 maven-deploy-plugin
 maven-eclipse-plugin



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



[continuum build - FAILED - update] Mon Sep 19 19:00:01 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050919.190001.txt


[continuum build - FAILED - update] Mon Sep 19 18:30:01 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050919.183001.txt


[maven2 build - SUCCESS - update] Mon Sep 19 18:00:00 GMT 2005

2005-09-19 Thread continuum
Distribution:
http://maven.zones.apache.org/~maven/builds/m2-20050919.18.tar.gz

Log:
http://maven.zones.apache.org/~maven/logs/m2-build-log-20050919.18.txt

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



[continuum build - FAILED - update] Mon Sep 19 18:00:00 GMT 2005

2005-09-19 Thread continuum
Log:
http://maven.zones.apache.org/~continuum/logs/continuum-build-log-20050919.18.txt


[jira] Closed: (MNG-880) release pom still contains snapshot version

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-880?page=all ]
 
John Casey closed MNG-880:
--

Resolution: Fixed

found the problem and fixed it for dependencies, finalName, and 
${project.version}.

> release pom still contains snapshot version
> ---
>
>  Key: MNG-880
>  URL: http://jira.codehaus.org/browse/MNG-880
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 30 minutes
> Remaining: 0 minutes
>
> this is a recent regression

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290221 - in /maven/components/trunk: maven-core-it/it2002/project/ maven-core-it/it2002/project/src/ maven-core-it/it2002/project/subproject/ maven-core-it/it2002/project/subproject/src/ maven-core-it/it2002/project/subproject/src/main/ ma...

2005-09-19 Thread jdcasey
Author: jdcasey
Date: Mon Sep 19 10:58:46 2005
New Revision: 290221

URL: http://svn.apache.org/viewcvs?rev=290221&view=rev
Log:
Resolving: MNG-878, MNG-880 (again)

o Added full resolution of plugins listed in the project hierarchy
o Added better resolution of snapshots within the reactor, and resolution of 
${finalName}
o Added usage of fully inherited model for release-pom.xml, to enable 
convergence of all POM inheritance to a single POM with no parent.
o Improved handling of SCM info in a reactored situation.


Added:
maven/components/trunk/maven-core-it/it2002/project/subproject/
maven/components/trunk/maven-core-it/it2002/project/subproject/pom.xml   
(with props)
maven/components/trunk/maven-core-it/it2002/project/subproject/src/
maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/java/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/java/org/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/java/org/apache/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/java/org/apache/maven/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/java/org/apache/maven/it2002/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/java/org/apache/maven/it2002/Thing.java
   (with props)

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/resources/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/resources/META-INF/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/resources/META-INF/plexus/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/main/resources/META-INF/plexus/components.xml
   (with props)
maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/java/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/java/org/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/java/org/apache/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/java/org/apache/maven/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/java/org/apache/maven/it2002/

maven/components/trunk/maven-core-it/it2002/project/subproject/src/test/java/org/apache/maven/it2002/ContainerDependentTest.java
   (with props)
maven/components/trunk/maven-core-it/it2002/project/subproject2/
maven/components/trunk/maven-core-it/it2002/project/subproject2/pom.xml   
(with props)
maven/components/trunk/maven-core-it/it2002/project/subproject2/src/
maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/java/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/java/org/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/java/org/apache/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/java/org/apache/maven/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/java/org/apache/maven/it2002/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/java/org/apache/maven/it2002/Thing.java
   (with props)

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/resources/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/resources/META-INF/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/resources/META-INF/plexus/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/main/resources/META-INF/plexus/components.xml
   (with props)
maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/java/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/java/org/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/java/org/apache/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/java/org/apache/maven/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/java/org/apache/maven/it2002/

maven/components/trunk/maven-core-it/it2002/project/subproject2/src/test/java/org/apache/maven/it2002/ContainerDependentTest.java
   (with props)
Removed:
maven/components/trunk/maven-core-it/it2002/project/src/
Modified:
maven/components/trunk/maven-core-it/it2002/project/pom.xml
maven/components/trunk/maven-plugins/maven-release-plugin/pom.xml

maven/components/trunk/maven-plugins/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java

maven/components/trunk/maven-p

[jira] Closed: (MNG-878) pom no longer correctly populated

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-878?page=all ]
 
John Casey closed MNG-878:
--

Resolution: Fixed

injection of command-line configuration and mojo invocation are new features.

> pom no longer correctly populated
> -
>
>  Key: MNG-878
>  URL: http://jira.codehaus.org/browse/MNG-878
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 7 hours
> Remaining: 0 minutes
>
> problems with the release pom generated by the release plugin:
> - RELEASE is the populated version for a plugin, instead of being resolved
> - plugins used in the build process but not explicitly listed in the pom are 
> not populated
> - parent is not merge in

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MNG-878) pom no longer correctly populated

2005-09-19 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-878?page=comments#action_46668 ] 

John Casey commented on MNG-878:


IMO, in order to support injection of command-line plugins, we'll have to have 
an audit trail in the MavenProject instance to record the plugins used and 
they're configurations - configuration from the command line also being a delta 
that we're not capturing here. I'm going to close this issue, because those 
would be new features, not bug fixes.

> pom no longer correctly populated
> -
>
>  Key: MNG-878
>  URL: http://jira.codehaus.org/browse/MNG-878
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 6 hours
> Remaining: 2 hours
>
> problems with the release pom generated by the release plugin:
> - RELEASE is the populated version for a plugin, instead of being resolved
> - plugins used in the build process but not explicitly listed in the pom are 
> not populated
> - parent is not merge in

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



RE: Eclipse, WTP and Maven directory structure

2005-09-19 Thread Vincent Massol
I should have mentioned that the pointer to the link below was provided by
Thomas.

Thanks Thomas!
-Vincent

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
> Of Thomas Van de Velde
> Sent: lundi 19 septembre 2005 18:39
> To: Maven Developers List
> Subject: Re: Eclipse, WTP and Maven directory structure
> 
> You can also refer to the following issue in Eclipse WTP's bugzilla:
> 
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=102981
> 
> Cheers,
> Thomas
> 
> On 9/19/05, Vincent Massol <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > FYI, it seems the Eclipse WTP team is considering supporting flexible
> > source
> > directory organization. They have listed 3 scenarios and one of them is
> > Maven:
> >
> > http://tinyurl.com/9jn7s
> > (scroll down to scenario 2 for the Maven part)
> >
> > -Vincent


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



[jira] Updated: (MNG-878) pom no longer correctly populated

2005-09-19 Thread John Casey (JIRA)
 [ http://jira.codehaus.org/browse/MNG-878?page=all ]

John Casey updated MNG-878:
---

Remaining Estimate: 2 hours  (was: 0 minutes)

> pom no longer correctly populated
> -
>
>  Key: MNG-878
>  URL: http://jira.codehaus.org/browse/MNG-878
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
>Time Spent: 6 hours
> Remaining: 2 hours
>
> problems with the release pom generated by the release plugin:
> - RELEASE is the populated version for a plugin, instead of being resolved
> - plugins used in the build process but not explicitly listed in the pom are 
> not populated
> - parent is not merge in

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



Re: Eclipse, WTP and Maven directory structure

2005-09-19 Thread Thomas Van de Velde
You can also refer to the following issue in Eclipse WTP's bugzilla:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=102981

Cheers,
Thomas

On 9/19/05, Vincent Massol <[EMAIL PROTECTED]> wrote:
> 
> Hi,
> 
> FYI, it seems the Eclipse WTP team is considering supporting flexible 
> source
> directory organization. They have listed 3 scenarios and one of them is
> Maven:
> 
> http://tinyurl.com/9jn7s
> (scroll down to scenario 2 for the Maven part)
> 
> -Vincent
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>


[jira] Commented: (MNG-878) pom no longer correctly populated

2005-09-19 Thread John Casey (JIRA)
[ http://jira.codehaus.org/browse/MNG-878?page=comments#action_4 ] 

John Casey commented on MNG-878:


not sure how to tackle the second item on this list...did you have something 
specific in mind?

> pom no longer correctly populated
> -
>
>  Key: MNG-878
>  URL: http://jira.codehaus.org/browse/MNG-878
>  Project: Maven 2
> Type: Bug
>   Components: maven-release-plugin
> Reporter: Brett Porter
> Assignee: John Casey
>  Fix For: 2.0-beta-2

>
> Original Estimate: 3 hours
> Remaining: 3 hours
>
> problems with the release pom generated by the release plugin:
> - RELEASE is the populated version for a plugin, instead of being resolved
> - plugins used in the build process but not explicitly listed in the pom are 
> not populated
> - parent is not merge in

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



svn commit: r290197 - in /maven/maven-1/plugins/trunk: checkstyle/plugin.jelly dist/plugin.jelly faq/plugin.jelly jar/plugin.jelly jdiff/plugin.jelly plugin/plugin.jelly plugin/xdocs/changes.xml plugin/xdocs/tags.xml

2005-09-19 Thread aheritier
Author: aheritier
Date: Mon Sep 19 09:37:34 2005
New Revision: 290197

URL: http://svn.apache.org/viewcvs?rev=290197&view=rev
Log:
improve naming consistency : rename plugin:available by 
assert:assertPluginAvailable

Modified:
maven/maven-1/plugins/trunk/checkstyle/plugin.jelly
maven/maven-1/plugins/trunk/dist/plugin.jelly
maven/maven-1/plugins/trunk/faq/plugin.jelly
maven/maven-1/plugins/trunk/jar/plugin.jelly
maven/maven-1/plugins/trunk/jdiff/plugin.jelly
maven/maven-1/plugins/trunk/plugin/plugin.jelly
maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml
maven/maven-1/plugins/trunk/plugin/xdocs/tags.xml

Modified: maven/maven-1/plugins/trunk/checkstyle/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/checkstyle/plugin.jelly?rev=290197&r1=290196&r2=290197&view=diff
==
--- maven/maven-1/plugins/trunk/checkstyle/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/checkstyle/plugin.jelly Mon Sep 19 09:37:34 2005
@@ -28,15 +28,15 @@
   xmlns:ant="jelly:ant"
   xmlns:util="jelly:util"
   xmlns:doc="doc"
-  xmlns:plugin="plugin"
+  xmlns:assert="assert"
   xmlns:maven="jelly:maven"
   xmlns:define="jelly:define"
   xmlns:checkstyle="checkstyle">
 
   
-  
-
-
+  
+
+
   
 
 
+
+
   
 
   

Modified: maven/maven-1/plugins/trunk/faq/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/faq/plugin.jelly?rev=290197&r1=290196&r2=290197&view=diff
==
--- maven/maven-1/plugins/trunk/faq/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/faq/plugin.jelly Mon Sep 19 09:37:34 2005
@@ -26,13 +26,13 @@
   xmlns:ant="jelly:ant"
   xmlns:define="jelly:define"
   xmlns:doc="doc"
-  xmlns:plugin="plugin"
+  xmlns:assert="assert"
   xmlns:faq="faq">
 
   
-  
-
-
+  
+
+
   
 
   

Modified: maven/maven-1/plugins/trunk/jar/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jar/plugin.jelly?rev=290197&r1=290196&r2=290197&view=diff
==
--- maven/maven-1/plugins/trunk/jar/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/jar/plugin.jelly Mon Sep 19 09:37:34 2005
@@ -24,12 +24,14 @@
   xmlns:license="license"
   xmlns:maven="jelly:maven"
   xmlns:artifact="artifact"
-  xmlns:plugin="plugin"
+  xmlns:assert="assert"
   xmlns:util="jelly:util"
   xmlns:doc="doc">
 
   
-
+  
+
+
   
 
   

Modified: maven/maven-1/plugins/trunk/jdiff/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jdiff/plugin.jelly?rev=290197&r1=290196&r2=290197&view=diff
==
--- maven/maven-1/plugins/trunk/jdiff/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/jdiff/plugin.jelly Mon Sep 19 09:37:34 2005
@@ -23,11 +23,13 @@
   xmlns:maven="jelly:maven"
   xmlns:doc="doc"
   xmlns:scm="scm"
-  xmlns:plugin="plugin"
+  xmlns:assert="assert"
   xmlns:ant="jelly:ant">
 
   
-
+  
+
+
   
 
   

Modified: maven/maven-1/plugins/trunk/plugin/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/plugin.jelly?rev=290197&r1=290196&r2=290197&view=diff
==
--- maven/maven-1/plugins/trunk/plugin/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/plugin/plugin.jelly Mon Sep 19 09:37:34 2005
@@ -55,9 +55,47 @@
   
 
   
-
+
+
+  
 
-  
+  
+
+  
+  
+  
+  
+${file} does not exist.${msg}
+
+
+
+  
+  
+  
+  
+  
+  
+${file} does not contain string [${match}].${msg}
+  
+
+
+  
+  
+  
+  
+${file} found and not expected.${msg}
+
+
+
+  
+  
+  
+  
+Expected [${expected}] but got [${value}].${msg}
+  
+
+
+  
 
 
 
@@ -157,49 +195,12 @@
 ===
   
 
-  
-
-  
-
-  
-
-  
-  
-  
-  
-${file} does not exist.${msg}
-
-
-
-  
-  
-  
-  
-  
-  
-${file} does not contain string [${match}].${msg}
-  
-
-
-  
-  
-  
-  
-${file} found and not expected.${msg}
-
-
-
-  
-  
-  
-  
-Expected [${expected}] but got [${value}].${msg}
-  
-
+  
+
   
   
   
-
+
   
 
   

Modified: maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/xdocs/changes.xml?rev=290197&r1=290196&r2=290197&view=

Eclipse, WTP and Maven directory structure

2005-09-19 Thread Vincent Massol
Hi,

FYI, it seems the Eclipse WTP team is considering supporting flexible source
directory organization. They have listed 3 scenarios and one of them is
Maven:

http://tinyurl.com/9jn7s
(scroll down to scenario 2 for the Maven part)

-Vincent


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



[jira] Created: (MNG-922) Allow configuring the deployment of a timedstamped artifact when using SNAPSHOT in the version

2005-09-19 Thread David Jackman (JIRA)
Allow configuring the deployment of a timedstamped artifact when using SNAPSHOT 
in the version
--

 Key: MNG-922
 URL: http://jira.codehaus.org/browse/MNG-922
 Project: Maven 2
Type: New Feature
Versions: 2.0-beta-1
 Reporter: David Jackman


This is essentially the same issue as MPARTIFACT-59, but for the Maven 2 code 
base.

When the current version contains SNAPSHOT, every deploy creates a SNAPSHOT 
artifact and an artifact with a date/time.  This causes a LOT of artifacts 
being created when using a continuous build.  Would like to see this "feature" 
configurable, so I can turn it off at the very least or have it happen only 
when I want to or on a scheduled basis.

On a related note, I think it would be good for the date/timestamped version to 
still contain the word SNAPSHOT.  This way, it's very easy to determine whether 
a project currently has dependencies on snapshot (unreleased) versions.  I can 
parse for the date/time format as well, but the common SNAPSHOT keyword would 
be easier.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[M1] RFC on doco - subject is: Setting or getting the value of plugin variables from a plugin context

2005-09-19 Thread Andy Glick

All,

This is a preliminary reworking of the information that Brett entered into 
Maven-1656. I wanted to let everyone have a look at what I'd cooked up and 
to ask a couple of questions about things that are not clear to me.



Q1) Brett's writeup didn't mention including the namespace for the artifact 
plugin, but in the M1.1b1 examples that I have worked through, the 
inclusion of the namespace is mandatory. So I've added it but enclosed it 
in braces with a note as this poses a potential problem. I've no longer got 
M1 1.0.2 or M1 1.1B1 configured on my development machine, just M1 1.1B2. 
It (M1 1.1B2) doesn't require the artifact namespace, but I did experience 
situations with M1 1.1B1 where it was required. I'm not sure how to go 
about constructing testcases for all of the cases, since they would have to 
vary by Maven version and then by maven.xml file contents and I can't test 
them on my Windows box.



Q2) Maven-1620 has the following text:


Setting a plugin property within a goal before attaining a goal for that 
plugin fails. Whenever it is put in a preGoal it does work correctly.



So it isn't clear to me that method b be can be used to set plugin 
variables as Brett stated in the writeup. It clearly will initialize a 
plugin, but that's not the issue. I've taken the liberty of removing the 
reference to b as a method for setting/getting variable values.



Q3) Are there cases in which none of this will work for whatever reason? 
That isn't clear. Brett and VMassol have both claimed that this is a 
non-deterministic mess, so 1 possibility is that there really are cases in 
which it won't work.



You'll note that I reference some JIRA issues, is that OK in project level 
documentation?  Will people have to register to get read access to the 
pages? You'll also note that I reference "Why We Rewrote Maven". I intend 
to start on that when this is put to bed.



I assume that this should be an entry in the M1 FAQ?


Andy





Setting or getting the value of plugin variables from a plugin context


If the plugin's logic does not determine if the variable that you are 
setting has already been set and it has unconditional logic to set the 
value of the variable, read overwrite your settings, then none of the 
techniques described here will work. So please read the plugin.jelly file. 
All of the plugins are expanded by default into ${user.home}/.maven/cache.



Plugin variables are only visible in the the Jelly execution context of the 
plugin in which they are declared  and only for during the plugin's 
lifecycle. This context is created when the plugin is initialized, read 
first loaded, and is destroyed when the plugin execution completes.



The plugin is initialised when any of the following occur:


a) the executing goal is a preGoal on a goal from that plugin


b) attainGoal has been called for that plugin


c) you have a namespace dependency on the plugin and it only works if you 
reference a tag from the
plugin. This could be done using the  syntax, but 
this approach proved to be unrealiable and has been deprecated.



Unfortunately, maven:set does not initialize the plugin context, as the 
Maven developers had at first expected. Plugin initialization, read context 
creation, occurs only as described above, and Jelly code executing in an 
arbitrary maven goal context cannot determine the context in which the 
plugin will run. So, to set or get the value of a plugin variable apply the 
trial and error method as follows:


Number 1 is not necessary for M1 1.1B2, but may be necessary for M1 1.0.2 
and/or 1.1B1 - see above
[1) insert the namespace for the artifact plugin into the local maven.xml 
file's  tag, xmlns:artifact="artifact". This binds the artifact 
plugin to the maven context and in some cases it is required.]



2a) if appropriate, set a preGoal on the target plugin coupled with the 
desired maven:set/get statements.



2b) if 2a doesn't work or you know the plugin will not have been 
initialized and you need to set a variable, you should try j:set without a 
scope.



2c) if neither 2a or 2b works then try j:set with a scope of parent as a 
last resort that will work in most but not all situations. [see the initial 
disclaimer]



When 1st recognized, the developers thought that this issue regarding the 
setting/getting of plugin variables could be fixed [see Jira Maven-1467] 
But note Brett's comments about the issue, the fix caused other problems 
which would have required backwards compatibility issues. Given that the 
final conclusion was reached in May of 2005, when Maven 2 was scheduled for 
delivery in only a few months, you can see that this was a non-starter.



This and similar issues with Jelly as an inappropriate execution 
environment were major factors in the development team's decision to 
rewrite Maven, which was reached a long time ago, in 2003. [see URL for Why 
We Rewrote Maven]



-
To u

[jira] Created: (MNG-921) release:perform must pass to m2 a profile to use if user provide one

2005-09-19 Thread Emmanuel Venisse (JIRA)
release:perform must pass to m2 a profile to use if user provide one


 Key: MNG-921
 URL: http://jira.codehaus.org/browse/MNG-921
 Project: Maven 2
Type: Improvement
  Components: maven-release-plugin  
Versions: 2.0-beta-1
 Reporter: Emmanuel Venisse




-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



  1   2   >