svn commit: r165464 - /maven/maven-1/core/trunk/bootstrap.sh

2005-04-30 Thread brett
Author: brett
Date: Sat Apr 30 23:43:44 2005
New Revision: 165464

URL: http://svn.apache.org/viewcvs?rev=165464&view=rev
Log:
fix script for cygwin

Modified:
maven/maven-1/core/trunk/bootstrap.sh

Modified: maven/maven-1/core/trunk/bootstrap.sh
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/bootstrap.sh?rev=165464&r1=165463&r2=165464&view=diff
==
--- maven/maven-1/core/trunk/bootstrap.sh (original)
+++ maven/maven-1/core/trunk/bootstrap.sh Sat Apr 30 23:43:44 2005
@@ -5,7 +5,7 @@
   CYGWIN*) cygwin=true ;;
 esac
 
-if [ "$cygwin" == "true" ]; then
+if $cygwin; then
   export MAVEN_HOME=`cygpath -pw $MAVEN_HOME`
   export MAVEN_HOME_LOCAL=`cygpath -pw $MAVEN_HOME_LOCAL`
 fi



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



svn commit: r165461 - /maven/maven-1/core/trunk/bootstrap.sh

2005-04-30 Thread brett
Author: brett
Date: Sat Apr 30 23:40:06 2005
New Revision: 165461

URL: http://svn.apache.org/viewcvs?rev=165461&view=rev
Log:
fix script for non-cygwin

Modified:
maven/maven-1/core/trunk/bootstrap.sh

Modified: maven/maven-1/core/trunk/bootstrap.sh
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/bootstrap.sh?rev=165461&r1=165460&r2=165461&view=diff
==
--- maven/maven-1/core/trunk/bootstrap.sh (original)
+++ maven/maven-1/core/trunk/bootstrap.sh Sat Apr 30 23:40:06 2005
@@ -5,7 +5,7 @@
   CYGWIN*) cygwin=true ;;
 esac
 
-if [ $cygwin ]; then
+if [ "$cygwin" == "true" ]; then
   export MAVEN_HOME=`cygpath -pw $MAVEN_HOME`
   export MAVEN_HOME_LOCAL=`cygpath -pw $MAVEN_HOME_LOCAL`
 fi
@@ -14,7 +14,7 @@
 
 sleep 1
 
-ps | grep $$ | grep -v grep | while read t1 t2
+ps -f | grep $$ | grep -v grep | while read t0 t1 t2
 do
   if [ $t1 != $$ ]; then
 tail -f --pid=$t1 bootstrap.txt



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



testers needed for ClearCase, perforce, starteam SCM providers

2005-04-30 Thread Brett Porter
Hi,

I was wondering if anyone using Maven is also using ClearCase, Perform
or StarTeam in their environment on a regular basis, and would be
interested in helping to test out releases of the SCM plugin and
Changlog plugin. I would like to revisit this in about 2 weeks.

Please don't CC both lists - either contact me directly, or preferably
reply to only the developers list (you don't necessarily need to be
subscribed, though if you are interested it might be helpful).

Thanks,
Brett

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



svn commit: r165458 - in /maven/maven-1/core/trunk: ./ bootstrap.sh

2005-04-30 Thread brett
Author: brett
Date: Sat Apr 30 21:43:31 2005
New Revision: 165458

URL: http://svn.apache.org/viewcvs?rev=165458&view=rev
Log:
add a simple script to bootstrap with, wrapping ant

Added:
maven/maven-1/core/trunk/bootstrap.sh   (with props)
Modified:
maven/maven-1/core/trunk/   (props changed)

Propchange: maven/maven-1/core/trunk/
--
--- svn:ignore (original)
+++ svn:ignore Sat Apr 30 21:43:31 2005
@@ -20,3 +20,4 @@
 bin
 .checkclipse
 checkstyle-checkclipse.xml
+bootstrap.txt

Added: maven/maven-1/core/trunk/bootstrap.sh
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/bootstrap.sh?rev=165458&view=auto
==
--- maven/maven-1/core/trunk/bootstrap.sh (added)
+++ maven/maven-1/core/trunk/bootstrap.sh Sat Apr 30 21:43:31 2005
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+cygwin=false;
+case "`uname`" in
+  CYGWIN*) cygwin=true ;;
+esac
+
+if [ $cygwin ]; then
+  export MAVEN_HOME=`cygpath -pw $MAVEN_HOME`
+  export MAVEN_HOME_LOCAL=`cygpath -pw $MAVEN_HOME_LOCAL`
+fi
+
+ant -f build-bootstrap.xml >bootstrap.txt 2>&1 &
+
+sleep 1
+
+ps | grep $$ | grep -v grep | while read t1 t2
+do
+  if [ $t1 != $$ ]; then
+tail -f --pid=$t1 bootstrap.txt
+exit
+  fi
+done
+

Propchange: maven/maven-1/core/trunk/bootstrap.sh
--
svn:eol-style = native

Propchange: maven/maven-1/core/trunk/bootstrap.sh
--
svn:executable = *

Propchange: maven/maven-1/core/trunk/bootstrap.sh
--
svn:keywords = "Author Date Id Revision"



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



svn commit: r165457 - /maven/maven-1/core/trunk/project.xml

2005-04-30 Thread brett
Author: brett
Date: Sat Apr 30 21:42:05 2005
New Revision: 165457

URL: http://svn.apache.org/viewcvs?rev=165457&view=rev
Log:
upgrade to dom4j 1.6, jaxen 1.1-beta-6

Modified:
maven/maven-1/core/trunk/project.xml

Modified: maven/maven-1/core/trunk/project.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/project.xml?rev=165457&r1=165456&r2=165457&view=diff
==
--- maven/maven-1/core/trunk/project.xml (original)
+++ maven/maven-1/core/trunk/project.xml Sat Apr 30 21:42:05 2005
@@ -455,12 +455,12 @@
   
 
   dom4j
-  1.5.2
+  1.6
   http://www.dom4j.org/
 
 
   jaxen
-  1.1-beta-4
+  1.1-beta-6
 
 
   ant
@@ -487,7 +487,7 @@
 
 
   commons-jelly
-  1.0-beta-4
+  1.0-RC2-SNAPSHOT
   http://jakarta.apache.org/commons/jelly/
 
 
@@ -597,7 +597,7 @@
 
   plexus
   plexus-utils
-  1.0-alpha-1
+  1.0-alpha-2
 
 
   maven



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



svn commit: r165456 - /maven/maven-1/core/trunk/src/bin/maven.bat

2005-04-30 Thread brett
Author: brett
Date: Sat Apr 30 21:41:46 2005
New Revision: 165456

URL: http://svn.apache.org/viewcvs?rev=165456&view=rev
Log:
propogate error codes from windows batch file

Modified:
maven/maven-1/core/trunk/src/bin/maven.bat

Modified: maven/maven-1/core/trunk/src/bin/maven.bat
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/bin/maven.bat?rev=165456&r1=165455&r2=165456&view=diff
==
--- maven/maven-1/core/trunk/src/bin/maven.bat (original)
+++ maven/maven-1/core/trunk/src/bin/maven.bat Sat Apr 30 21:41:46 2005
@@ -42,6 +42,8 @@
 @REM set local scope for the variables with windows NT shell
 if "%OS%"=="Windows_NT" @setlocal
 
+set ERROR_CODE=0
+
 @REM  START VALIDATION 
 if not "%JAVA_HOME%" == "" goto OkJHome
 
@@ -50,6 +52,7 @@
 echo Please set the JAVA_HOME variable in your environment to match the
 echo location of your Java installation
 echo.
+set ERROR_CODE=1
 goto end
 
 :OkJHome
@@ -61,6 +64,7 @@
 echo Please set the JAVA_HOME variable in your environment to match the
 echo location of your Java installation
 echo.
+set ERROR_CODE=1
 goto end
 
 :chkMHome
@@ -71,6 +75,7 @@
 echo Please set the MAVEN_HOME variable in your environment to match the
 echo location of the Maven installation
 echo.
+set ERROR_CODE=1
 goto end
 
 :valMHome
@@ -82,6 +87,7 @@
 echo Please set the MAVEN_HOME variable in your environment to match the
 echo location of the Maven installation
 echo.
+set ERROR_CODE=1
 goto end
 @REM  END VALIDATION 
 
@@ -124,14 +130,22 @@
 
 @REM Start MAVEN without MAVEN_HOME_LOCAL override
 %MAVEN_JAVA_EXE% 
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
 
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
 "-Dmaven.home=%MAVEN_HOME%" "-Dtools.jar=%JAVA_HOME%\lib\tools.jar" 
"-Dforehead.conf.file=%MAVEN_HOME%\bin\forehead.conf" 
-Djava.endorsed.dirs=%MAVEN_ENDORSED% %MAVEN_OPTS% -classpath %MAVEN_CLASSPATH% 
%MAVEN_MAIN_CLASS% %MAVEN_CMD_LINE_ARGS%
+if errorlevel 1 goto error
 @REM %MAVEN_JAVA_EXE% -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser 
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
 
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
 "-Dmaven.home=%MAVEN_HOME%" "-Dtools.jar=%JAVA_HOME%\lib\tools.jar" 
"-Dforehead.conf.file=%MAVEN_HOME%\bin\forehead.conf" 
-Djava.endorsed.dirs=%MAVEN_ENDORSED% %MAVEN_OPTS% -classpath %MAVEN_CLASSPATH% 
%MAVEN_MAIN_CLASS% %MAVEN_CMD_LINE_ARGS%
 goto :end
 
 @REM Start MAVEN with MAVEN_HOME_LOCAL override
 :StartMHL
 %MAVEN_JAVA_EXE% 
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
 
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
 "-Dmaven.home=%MAVEN_HOME%" "-Dmaven.home.local=%MAVEN_HOME_LOCAL%" 
"-Dtools.jar=%JAVA_HOME%\lib\tools.jar" 
"-Dforehead.conf.file=%MAVEN_HOME%\bin\forehead.conf" 
-Djava.endorsed.dirs=%MAVEN_ENDORSED% %MAVEN_OPTS% -classpath %MAVEN_CLASSPATH% 
%MAVEN_MAIN_CLASS% %MAVEN_CMD_LINE_ARGS%
+if errorlevel 1 goto error
 @REM %MAVEN_JAVA_EXE% -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser 
-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
 
-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
 "-Dmaven.home=%MAVEN_HOME%" "-Dmaven.home.local=%MAVEN_HOME_LOCAL%" 
"-Dtools.jar=%JAVA_HOME%\lib\tools.jar" 
"-Dforehead.conf.file=%MAVEN_HOME%\bin\forehead.conf" 
-Djava.endorsed.dirs=%MAVEN_ENDORSED% %MAVEN_OPTS% -classpath %MAVEN_CLASSPATH% 
%MAVEN_MAIN_CLASS% %MAVEN_CMD_LINE_ARGS%
 
+goto end
+
+:error
+if "%OS%"=="Windows_NT" @endlocal
+set ERROR_CODE=1
+
 :end
 @REM set local scope for the variables with windows NT shell
 if "%OS%"=="Windows_NT" goto endNT
@@ -151,4 +165,6 @@
 if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
 @REM pause the batch file if MAVEN_BATCH_PAUSE is set to 'on'
 if "%MAVEN_BATCH_PAUSE%" == "on" pause
+
+exit %ERROR_CODE%
 



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



Re: Releasing issues

2005-04-30 Thread Brett Porter
Maven 1.1 will only support JDK 1.4. I say we bit the bullet all round.
1.3 has started EOL anyway.

You obviously got by - I see you got the JARs up to ibiblio. If you feel
additions to the documentation is needed - go ahead and make them :)

I have an additional problem with this release - I can't seem to find a
vote on it. I'm aware yourself and Vincent are probably the only ones
working on it, because of Cactus' reliance on it, but I'm really trying
to push recently to open up development so that anyone interested can
participate. Please vote next time around.

Thanks,
Brett

Felipe Leme wrote:

>Hi all,
>
>I've been trying to release maven-ejb-plugin 1.6 (which is a requirement
>for the upcoming Cactus 1.7.1), but been facing a lot of issues. I've
>already managed to install the proper versions of site and scm plugins,
>but now I got an error regarding JCE:
>
>Deploying to repository: apache
>JCE is required for an SSH based deployer
>Please use JDK 1.4 or above, or install a JCE provider
>A free (GPL) provider is available from Bouncycastle:
>http://www.bouncycastle.org/
>Failed to deploy to: apache Reason: JCE required
>
>
>So, my question is: should I use JDK 1.4 (instead of JDK 1.3)? Or should
>I keep JDK 1.3 for maximum compatibility and then set the crypto stuff?
>
>Regardless of the answer, I think the procedure should be described at
>the doc (http://maven.apache.org/developers/making-releases.html) - in
>particular, that pages does not say anything about which JDK version to
>use.
>
>[]s,
>
>-- Felipe
>
>
>
>-
>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]



results of synchronize

2005-04-30 Thread maven
Syncing Apache Software Foundation
Syncing Codehaus
Syncing Maven Plugins @ SourceForge
Syncing Mortbay Consulting
Syncing Open Symphony
Syncing OS Java
mypath: /home/projects/maven/repository-tools/repoclean/repoclean.sh
Setting mydir based on mypath...
mydir: /home/projects/maven/repository-tools/repoclean
[INFO] Creating reports directory: 
'/home/projects/maven/repository-staging/to-ibiblio/reports/repoclean/01-May-2005_12.00.35'
[INFO] Source repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven'
[INFO] Target repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven2'
[INFO] Discovering artifacts.
[WARNING] Cannot parse version from artifact path: 'activemq/jars/xmltypes.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[xmltypes]'
[WARNING] Cannot parse version from artifact path: 
'avalon-repository/propertiess/repository.properties'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[repository]'
[WARNING] Cannot parse version from artifact path: 'crossdb/jars/crossdb.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[crossdb]'
[WARNING] Cannot parse version from artifact path: 
'drools/distributions/distributions.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[distributions]'
[WARNING] Cannot parse version from artifact path: 'javacc/jars/JavaCC.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[JavaCC]'
[WARNING] Cannot parse version from artifact path: 'jdring/jars/jdring.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[jdring]'
[WARNING] Cannot parse version from artifact path: 'maven/jars/maven.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[maven]'
[WARNING] Cannot parse version from artifact path: 'picocontainer/poms/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.01.000alpha.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.02.000beta.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'tomcat/jars/tomcat3.2.1.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[tomcat3.2.1]'
[WARNING] Cannot parse version from artifact path: 'trygvis/1/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 'xdoclet-plugins/poms/xx'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[INFO] Rewriting POMs and artifact files.
[INFO] Rewriting up to 7849 artifacts (Should be 15698 rewrites including POMs).
[INFO] Actual number of artifacts rewritten: 0 (0 including POMs).
[WARNING] Warning encountered while rewriting one or more artifacts from source 
repository to target repository.
building file list ... done
last-sync.txt
maven/plugins/
maven/plugins/maven-ejb-plugin-1.6.jar
maven/plugins/maven-ejb-plugin-1.6.jar.md5
maven/poms/
maven/poms/maven-ejb-plugin-1.6.pom
maven/poms/maven-ejb-plugin-1.6.pom.md5
wrote 635217 bytes  read 106 bytes  6652.60 bytes/sec
total size is 2534027915  speedup is 3988.57
building file list ... done
.index.txt
last-sync.txt
wrote 1021795 bytes  read 2794 bytes  4242.60 bytes/sec
total size is 3388386610  speedup is 3307.07

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



Releasing issues

2005-04-30 Thread Felipe Leme
Hi all,

I've been trying to release maven-ejb-plugin 1.6 (which is a requirement
for the upcoming Cactus 1.7.1), but been facing a lot of issues. I've
already managed to install the proper versions of site and scm plugins,
but now I got an error regarding JCE:

Deploying to repository: apache
JCE is required for an SSH based deployer
Please use JDK 1.4 or above, or install a JCE provider
A free (GPL) provider is available from Bouncycastle:
http://www.bouncycastle.org/
Failed to deploy to: apache Reason: JCE required


So, my question is: should I use JDK 1.4 (instead of JDK 1.3)? Or should
I keep JDK 1.3 for maximum compatibility and then set the crypto stuff?

Regardless of the answer, I think the procedure should be described at
the doc (http://maven.apache.org/developers/making-releases.html) - in
particular, that pages does not say anything about which JDK version to
use.

[]s,

-- Felipe



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



[jira] Created: (MNG-364) Ant remote repository conflicts with pom definition

2005-04-30 Thread Brett Porter (JIRA)
Ant remote repository conflicts with pom definition
---

 Key: MNG-364
 URL: http://jira.codehaus.org/browse/MNG-364
 Project: m2
Type: Bug
  Components: maven-model, maven-artifact-ant  
Versions: 2.0-alpha-1
Reporter: Brett Porter
 Fix For: 2.0-alpha-3


something interesting I'm noticing about the way remote repositories come up 
through the pom and super pom is that you can start switching around if you've 
selected a different one as you traverse into the inherited poms and transitive 
dependencies.

The key is probably to declare your "mirror" for "central", and the ant tasks 
should also have a notion of that.

-- 
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: (MPWAR-30) [PATCH] Option to pack project classes inside a JAR into WEB-INF/lib

2005-04-30 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MPWAR-30?page=comments#action_38371 ]
 
Brett Porter commented on MPWAR-30:
---

I'm still not particularly enamored with this, probably because of the use 
cases I've seen quoted in here to produce two things from a project. Doing so 
mucks with the way m2 does things, and generally adds to the guesswork of what 
a project is doing.

I'm -0.75, but won't block it being committed if Felipe wishes to do so. Bear 
in mind that we hope to start replacing all of the m1 plugins with 
functionality equivalent wrappers around their m2 counterparts "real soon now", 
so there is a risk this will disappear again unless you are prepared to make 
the change there too/instead.

> [PATCH] Option to pack project classes inside a JAR into WEB-INF/lib
> 
>
>  Key: MPWAR-30
>  URL: http://jira.codehaus.org/browse/MPWAR-30
>  Project: maven-war-plugin
> Type: New Feature
> Versions: 1.7
> Reporter: Felipe Leme
> Assignee: Felipe Leme
>  Attachments: maven_war_usesJar.patch
>
> Original Estimate: 1 hour
> Remaining: 1 hour
>
> The way the plugin works now, the project classes are packed under 
> WEB-INF/classes. It would be nice if the plugin used the project's JAR 
> instead, packing it under WEB-INF/lib. That feature would be really useful 
> when the war is a secondary package for the project (for instance, when the 
> main artifact is a JAR containg a taglib).
> I'm providing a patch for this change - if there is interest in applying it, 
> I can write some test cases too.

-- 
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-325) Do something about interpolated values in dependencies

2005-04-30 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-325?page=comments#action_38370 ]
 
Brett Porter commented on MNG-325:
--

Dan, sorry I wasn't totally clear about my intentions. I think we might be 
doing additional work in this space in relation to a full repository app, just 
not in the scope of the current tool.

I didn't think removing extend was really going to help here? Is there a pom 
coming through that is invalid?

Also, I'd rather not remove dependencies if we can avoid it. But the main 
driver there is the amount of work involved, and that would be pushed to a 
bigger project as well.

Some specific examples of things could be improved - eg filling in pom 
variables as you say (though not if the version is inherited) - if you have any 
examples, feel free to bring them up.

> Do something about interpolated values in dependencies
> --
>
>  Key: MNG-325
>  URL: http://jira.codehaus.org/browse/MNG-325
>  Project: m2
> Type: Sub-task
> Reporter: Dan Diephouse
> Assignee: John Casey

>
>
> In the xfire poms, we extend the parent and have ${pom.currentVersion} in the 
> version field for a lot of the dependencies. M2 chokes on these. Maybe these 
> dependencies can be thrown out? Maybe pom.currentVersion can be filled in 
> automatically? 

-- 
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-250) make aggregation feasible

2005-04-30 Thread Brett Porter (JIRA)
 [ http://jira.codehaus.org/browse/MNG-250?page=comments#action_38369 ]
 
Brett Porter commented on MNG-250:
--

in this case, a coupld of other features need to be implemented:
- the code from DefaultMaven that does the project aggregation should be moved 
into the project builder as an optional function
- dependency resolution that is triggered by a goal on the main project would 
also need to resolve dependencies of the collected projects on an aggregation 
enabled project


> make aggregation feasible
> -
>
>  Key: MNG-250
>  URL: http://jira.codehaus.org/browse/MNG-250
>  Project: m2
> Type: New Feature
> Reporter: Brett Porter
> Assignee: Brett Porter
> Priority: Minor
>  Fix For: 2.0-alpha-2

>
>
> some plugins need to be able to aggregate, eg the assembly plugin could take 
> all the content based on its descriptor from the subprojects, and include 
> them under a base path. However, at the moment it runs across all of the 
> subprojects as well.
> Need to be able to have a goal turn off the execution of the reactor 
> (essentially it will be in aggregation mode), but have all the projects 
> available to it (possibly just collecting - see the other bug about reactor 
> execution modes).

-- 
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: r165444 - in /maven/maven-1/plugins/tags/MAVEN_EJB_1_6: ./ project.xml

2005-04-30 Thread felipeal
Author: felipeal
Date: Sat Apr 30 18:21:10 2005
New Revision: 165444

URL: http://svn.apache.org/viewcvs?rev=165444&view=rev
Log:
[maven-scm] copy for tag MAVEN_EJB_1_6

Added:
maven/maven-1/plugins/tags/MAVEN_EJB_1_6/
  - copied from r165442, maven/maven-1/plugins/trunk/ejb/
maven/maven-1/plugins/tags/MAVEN_EJB_1_6/project.xml
  - copied unchanged from r165443, 
maven/maven-1/plugins/trunk/ejb/project.xml


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



svn commit: r165443 - /maven/maven-1/plugins/trunk/ejb/project.xml

2005-04-30 Thread felipeal
Author: felipeal
Date: Sat Apr 30 18:21:01 2005
New Revision: 165443

URL: http://svn.apache.org/viewcvs?rev=165443&view=rev
Log:
[maven-scm-plugin] prepare release 1.6

Modified:
maven/maven-1/plugins/trunk/ejb/project.xml

Modified: maven/maven-1/plugins/trunk/ejb/project.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ejb/project.xml?rev=165443&r1=165442&r2=165443&view=diff
==
--- maven/maven-1/plugins/trunk/ejb/project.xml (original)
+++ maven/maven-1/plugins/trunk/ejb/project.xml Sat Apr 30 18:21:01 2005
@@ -23,7 +23,7 @@
   3
   maven-ejb-plugin
   Maven EJB Plugin
-  1.6-SNAPSHOT
+  1.6
   EJB Plugin for Maven
   EJB Plugin for Maven
   http://maven.apache.org/reference/plugins/ejb/
@@ -49,6 +49,11 @@
   1.5
   1.5
   MAVEN_EJB_1_5
+
+
+  1.6
+  1.6
+  MAVEN_EJB_1_6
 
   
   



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



Re: M1 : I18N for xdoc

2005-04-30 Thread Brett Porter
If it isn't backwards compatible, then I think the best solution would be to put
it in the sandbox as a prototype, and use the ideas to incorporate directly into
the Maven2 site plugin. 

This can now render pages almost identically to the m1 version, so I'd like to
start working it in as v2.0 of the xdoc plugin in m1. Spending the effort in
this way would avoid having to rework it later. Without taking a great deal more
right now.

Also, I'd encourage you to hold any discussions about the work on the dev list,
as I think this is something we could all benefit from and have input into.

Cheers,
Brett

Quoting Arnaud HERITIER <[EMAIL PROTECTED]>:

> Hi guys,
>  
> With Vincent Siveton, we are trying to make some tests to
> internationalize the current xdoc plugin for M1.
>  
> Because I don't want to break the current one if we want to release the
> 1.9 for maven 1.1, I see two options : 
> - create a branch (can I do it without to create a branch for all plugins
> ?), it will be better to merge it in the future..
> - create a copy in the sandbox
>  
>  
> What do you think ?
>  
> Arnaud
> 




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



Re: [M2] collectedProjects not set in DefaulMavenProjectBuilder

2005-04-30 Thread Brett Porter
For now, you can set the collected projects in your unit test yourself after
building them all individually.

You are right, though - the proper solution should be to add a new method to the
project builder that will build a project and its declared modules, moving that
functionality from the DefaultMaven code. Thanks for pointing it out - I'll add
it to JIRA.

If you are working on plugins, please ensure you are working with the latest
code from subversion - the plugin API has changed quite a bit so it will save
rework later.

Thanks,
Brett

Quoting Mauro Botelho <[EMAIL PROTECTED]>:

> I am working on the eclipse plugin again, and while trying to run some
> tests, I noticed that when running the plugin from the command line I
> got the expected behavior, but not when running the unit test.
> 
> What I am trying to do is to create a monster eclipse project with all
> the modules included, similar to what the idea plug in is doing.
> 
> After further examining the code, I noticed that
> project.collectedProjects is only set inside the collectProjects
> method in the DefaultMaven class, and not anywhere else.
> 
> Shouldn't this be done in the DefaultProjectBuilder?
> 
> Am I approaching this problem the wrong way?
> 
> Mauro
> 
> -
> 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: [Maven1] linkcheck plugin

2005-04-30 Thread Brett Porter
Quoting Vincent Siveton <[EMAIL PROTECTED]>:

> It's coming from Jakarta Commons and AFAIK, Maven uses the version 2.0.
> I found a similar bug report at Jira:
> http://jira.codehaus.org/browse/MAVEN-1353
> but without explication or comment about the solution!

This fix was made on the Maven core, with a workaround to chase down redirects.

We'll upgrade to httpclient 3.0 across the board when it finally gets released.
I have no idea when that is - they should be fairly close.

Cheers,
Brett


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



[M2] collectedProjects not set in DefaulMavenProjectBuilder

2005-04-30 Thread Mauro Botelho
I am working on the eclipse plugin again, and while trying to run some
tests, I noticed that when running the plugin from the command line I
got the expected behavior, but not when running the unit test.

What I am trying to do is to create a monster eclipse project with all
the modules included, similar to what the idea plug in is doing.

After further examining the code, I noticed that
project.collectedProjects is only set inside the collectProjects
method in the DefaultMaven class, and not anywhere else.

Shouldn't this be done in the DefaultProjectBuilder?

Am I approaching this problem the wrong way?

Mauro

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



results of synchronize

2005-04-30 Thread maven
Syncing Apache Software Foundation
Syncing Codehaus
Syncing Maven Plugins @ SourceForge
Syncing Mortbay Consulting
Syncing Open Symphony
Syncing OS Java
mypath: /home/projects/maven/repository-tools/repoclean/repoclean.sh
Setting mydir based on mypath...
mydir: /home/projects/maven/repository-tools/repoclean
[INFO] Creating reports directory: 
'/home/projects/maven/repository-staging/to-ibiblio/reports/repoclean/30-Apr-2005_08.00.39'
[INFO] Source repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven'
[INFO] Target repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven2'
[INFO] Discovering artifacts.
[WARNING] Cannot parse version from artifact path: 'activemq/jars/xmltypes.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[xmltypes]'
[WARNING] Cannot parse version from artifact path: 
'avalon-repository/propertiess/repository.properties'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[repository]'
[WARNING] Cannot parse version from artifact path: 'crossdb/jars/crossdb.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[crossdb]'
[WARNING] Cannot parse version from artifact path: 
'drools/distributions/distributions.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[distributions]'
[WARNING] Cannot parse version from artifact path: 'javacc/jars/JavaCC.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[JavaCC]'
[WARNING] Cannot parse version from artifact path: 'jdring/jars/jdring.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[jdring]'
[WARNING] Cannot parse version from artifact path: 'maven/jars/maven.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[maven]'
[WARNING] Cannot parse version from artifact path: 'picocontainer/poms/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.01.000alpha.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.02.000beta.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'tomcat/jars/tomcat3.2.1.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[tomcat3.2.1]'
[WARNING] Cannot parse version from artifact path: 'trygvis/1/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 'xdoclet-plugins/poms/xx'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[INFO] Rewriting POMs and artifact files.
[INFO] Rewriting up to 7849 artifacts (Should be 15698 rewrites including POMs).
[INFO] Actual number of artifacts rewritten: 0 (0 including POMs).
[WARNING] Warning encountered while rewriting one or more artifacts from source 
repository to target repository.
building file list ... done
last-sync.txt
wrote 623141 bytes  read 42 bytes  20432.23 bytes/sec
total size is 2534016079  speedup is 4066.25
building file list ... done
.index.txt
last-sync.txt
wrote 1021795 bytes  read 2794 bytes  7911.88 bytes/sec
total size is 3388386610  speedup is 3307.07

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



[jira] Created: (MAVEN-1602) Directory structure for xdocs inconsistent in ten-minute-test.xml

2005-04-30 Thread Michael Hinterseher (JIRA)
Directory structure for xdocs inconsistent in ten-minute-test.xml
-

 Key: MAVEN-1602
 URL: http://jira.codehaus.org/browse/MAVEN-1602
 Project: maven
Type: Task
  Components: documentation  
Versions: 1.1-beta-1
Reporter: Michael Hinterseher
Priority: Trivial
 Fix For: 1.1-beta-1
 Attachments: fix.txt

Directory structure of xdocs inconsistent in ten-minute-test.xml with 
conventions.
According to conventions xdoc directory should be in src/site/xdoc


-- 
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: [Maven1] linkcheck plugin

2005-04-30 Thread Arnaud HERITIER
I think that we must wait for an httpClient 3.0 final release to upgrade it.
The RC2 is actually available and we can hope that the final release will be 
available soon.

Arnaud

> 
> Hi there,
> 
> Regarding the linkcheck plugin under Maven 1.0.2, I've got 
> this following
> exception:
> Checking link http://www.google.com
> Error getting URI host
> org.apache.commons.httpclient.HttpException: Redirect from 
> host www.google.com to www.google.ca is not supported
> at
> org.apache.commons.httpclient.HttpMethodBase.checkValidRedirect(HttpM
> ethodBase.java:1243)
> at
> org.apache.commons.httpclient.HttpMethodBase.processRedirectResponse(
> HttpMethodBase.java:1191)
> ...
> 
> It's coming from Jakarta Commons and AFAIK, Maven uses the 
> version 2.0.
> I found a similar bug report at Jira:
> http://jira.codehaus.org/browse/MAVEN-1353
> but without explication or comment about the solution!
>  
> Moreover, I found this following thread:
> http://www.mail-archive.com/[EMAIL PROTECTED]
> che.org/msg059
> 48.html
> 
> My question is:
> What is the road map for HTTPClient? 
> 
> Thanks a lot!
> 
> 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]



M1 : I18N for xdoc

2005-04-30 Thread Arnaud HERITIER
Hi guys,
 
With Vincent Siveton, we are trying to make some tests to internationalize 
the current xdoc plugin for M1.
 
Because I don't want to break the current one if we want to release the 1.9 
for maven 1.1, I see two options : 
- create a branch (can I do it without to create a branch for all plugins 
?), it will be better to merge it in the future..
- create a copy in the sandbox
 
 
What do you think ?
 
Arnaud


[jira] Created: (MAVENUPLOAD-371) Please upload the JGoodies Forms 1.0.5 library to the Maven repository

2005-04-30 Thread Arik Kfir (JIRA)
Please upload the JGoodies Forms 1.0.5 library to the Maven repository
--

 Key: MAVENUPLOAD-371
 URL: http://jira.codehaus.org/browse/MAVENUPLOAD-371
 Project: maven-upload-requests
Type: Task
Reporter: Arik Kfir
 Attachments: jgoodies-forms-1.0.5-bundle.jar

http://www.jgoodies.com/freeware/forms/index.html
http://www.jgoodies.com/contact.html

JGoodies Forms is a framework for (easily) writing Java user-interface code. 
Provides many layout widgets that are not found in the j2se core (it is also 
known for the JGoodies Looks look&feel package). 

I would like to use it in the Mevenide IDEA integration plugin we are writing. 
The ibiblio already contains the 1.0.4 version - this is the 1.0.5.

10x in advance!

P.S.
I've attached the bundle as well as supplying the URL - didn't know which one 
is easier for you to work with. They are the same.

-- 
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]



results of synchronize

2005-04-30 Thread maven
Syncing Apache Software Foundation
Syncing Codehaus
Syncing Maven Plugins @ SourceForge
Syncing Mortbay Consulting
Syncing Open Symphony
Syncing OS Java
mypath: /home/projects/maven/repository-tools/repoclean/repoclean.sh
Setting mydir based on mypath...
mydir: /home/projects/maven/repository-tools/repoclean
[INFO] Creating reports directory: 
'/home/projects/maven/repository-staging/to-ibiblio/reports/repoclean/30-Apr-2005_04.01.41'
[INFO] Source repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven'
[INFO] Target repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven2'
[INFO] Discovering artifacts.
[WARNING] Cannot parse version from artifact path: 'activemq/jars/xmltypes.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[xmltypes]'
[WARNING] Cannot parse version from artifact path: 
'avalon-repository/propertiess/repository.properties'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[repository]'
[WARNING] Cannot parse version from artifact path: 'crossdb/jars/crossdb.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[crossdb]'
[WARNING] Cannot parse version from artifact path: 
'drools/distributions/distributions.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[distributions]'
[WARNING] Cannot parse version from artifact path: 'javacc/jars/JavaCC.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[JavaCC]'
[WARNING] Cannot parse version from artifact path: 'jdring/jars/jdring.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[jdring]'
[WARNING] Cannot parse version from artifact path: 'maven/jars/maven.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[maven]'
[WARNING] Cannot parse version from artifact path: 'picocontainer/poms/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.01.000alpha.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.02.000beta.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'tomcat/jars/tomcat3.2.1.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[tomcat3.2.1]'
[WARNING] Cannot parse version from artifact path: 'trygvis/1/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 'xdoclet-plugins/poms/xx'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[INFO] Rewriting POMs and artifact files.
[INFO] Rewriting up to 7849 artifacts (Should be 15698 rewrites including POMs).
[INFO] Actual number of artifacts rewritten: 1 (2 including POMs).
[WARNING] Warning encountered while rewriting one or more artifacts from source 
repository to target repository.
building file list ... done
cargo/
cargo/jars/
cargo/jars/cargo-0.5.jar
cargo/jars/cargo-0.5.jar.md5
cargo/plugins/
cargo/plugins/cargo-maven-plugin-0.5.jar
cargo/plugins/cargo-maven-plugin-0.5.jar.md5
cargo/poms/
cargo/poms/cargo-0.5.pom
cargo/poms/cargo-0.5.pom.md5
cargo/poms/cargo-maven-plugin-0.5.pom
cargo/poms/cargo-maven-plugin-0.5.pom.md5
last-sync.txt
wrote 996860 bytes  read 170 bytes  4923.60 bytes/sec
total size is 2534016079  speedup is 2541.56
building file list ... done
.index.txt
cargo/cargo/
cargo/cargo/0.5/
cargo/cargo/0.5/cargo-0.5.jar
cargo/cargo/0.5/cargo-0.5.jar.md5
cargo/cargo/0.5/cargo-0.5.jar.sha1
cargo/cargo/0.5/cargo-0.5.pom
cargo/cargo/0.5/cargo-0.5.pom.md5
cargo/cargo/0.5/cargo-0.5.pom.sha1
last-sync.txt
wrote 1383278 bytes  read 2890 bytes  2327.74 bytes/sec
total size is 3388386610  speedup is 2444.43

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



[Maven1] linkcheck plugin

2005-04-30 Thread Vincent Siveton
Hi there,

Regarding the linkcheck plugin under Maven 1.0.2, I've got this following
exception:
Checking link http://www.google.com
Error getting URI host
org.apache.commons.httpclient.HttpException: Redirect from host
www.google.com to www.google.ca is not supported
at
org.apache.commons.httpclient.HttpMethodBase.checkValidRedirect(HttpM
ethodBase.java:1243)
at
org.apache.commons.httpclient.HttpMethodBase.processRedirectResponse(
HttpMethodBase.java:1191)
...

It's coming from Jakarta Commons and AFAIK, Maven uses the version 2.0.
I found a similar bug report at Jira:
http://jira.codehaus.org/browse/MAVEN-1353
but without explication or comment about the solution!
 
Moreover, I found this following thread:
http://www.mail-archive.com/commons-httpclient-dev@jakarta.apache.org/msg059
48.html

My question is:
What is the road map for HTTPClient? 

Thanks a lot!

Vincent



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



[jira] Assigned: (CONTINUUM-93) setup a public demo site

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-93?page=all ]

Jason van Zyl reassigned CONTINUUM-93:
--

Assign To: Jason van Zyl

> setup a public demo site
> 
>
>  Key: CONTINUUM-93
>  URL: http://jira.codehaus.org/browse/CONTINUUM-93
>  Project: Continuum
> Type: Task
> Reporter: Brett Porter
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> we need to get a public demo site up, with security, running on port 80. It 
> might be possible to do this apache, but if not we could use our own machine

-- 
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



[jira] Assigned: (CONTINUUM-105) better input for SCM URL

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-105?page=all ]

Jason van Zyl reassigned CONTINUUM-105:
---

Assign To: Jason van Zyl  (was: Trygve Laugstol)

> better input for SCM URL
> 
>
>  Key: CONTINUUM-105
>  URL: http://jira.codehaus.org/browse/CONTINUUM-105
>  Project: Continuum
> Type: Improvement
>   Components: continuum-web
> Reporter: Brett Porter
> Assignee: Jason van Zyl
> Priority: Trivial
>  Fix For: 1.0-alpha-2

>
>
> this should not require scm:, and the type should be a dropdown of 
> CVS|SVN|etc. The text input would then just be CVSROOT, SVN URL, etc.

-- 
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



[jira] Assigned: (CONTINUUM-106) don't allow a project to be added identically more than once

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-106?page=all ]

Jason van Zyl reassigned CONTINUUM-106:
---

Assign To: Jason van Zyl

> don't allow a project to be added identically more than once
> 
>
>  Key: CONTINUUM-106
>  URL: http://jira.codehaus.org/browse/CONTINUUM-106
>  Project: Continuum
> Type: Bug
> Versions: 1.0-alpha-1
> Reporter: Brett Porter
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> I was able to submit plexus-utils twice and both were listed. I deleted one 
> successfully, but it shouldn't be allowed in if they are operating from the 
> same SCM URL + branch

-- 
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



[jira] Assigned: (CONTINUUM-95) need some additional differentiation between names

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-95?page=all ]

Jason van Zyl reassigned CONTINUUM-95:
--

Assign To: Jason van Zyl

> need some additional differentiation between names
> --
>
>  Key: CONTINUUM-95
>  URL: http://jira.codehaus.org/browse/CONTINUUM-95
>  Project: Continuum
> Type: Improvement
>   Components: continuum-web
> Reporter: Brett Porter
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> not sure of the berst solution here, but name might not be entirely clear in 
> all cases - additionally listing the group/artifactId might help, or adding 
> the build type (Compare m2 and m1 - both listed as "Maven")

-- 
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



[jira] Assigned: (CONTINUUM-97) cope with different m1 scm url format

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-97?page=all ]

Jason van Zyl reassigned CONTINUUM-97:
--

Assign To: Jason van Zyl

> cope with different m1 scm url format
> -
>
>  Key: CONTINUUM-97
>  URL: http://jira.codehaus.org/browse/CONTINUUM-97
>  Project: Continuum
> Type: Improvement
> Reporter: Brett Porter
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> need to allow ':' in a subversion SCM URL and convert it to a '/' internally

-- 
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



[jira] Assigned: (CONTINUUM-109) providing a bad POM URL to add dumps an ugly NPE

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-109?page=all ]

Jason van Zyl reassigned CONTINUUM-109:
---

Assign To: Jason van Zyl

> providing a bad POM URL to add dumps an ugly NPE
> 
>
>  Key: CONTINUUM-109
>  URL: http://jira.codehaus.org/browse/CONTINUUM-109
>  Project: Continuum
> Type: Bug
> Versions: 1.0-alpha-1
> Reporter: Brett Porter
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> currently, if you put the wrong URL in to the add POM entry, you get a 
> nullpointer exception from summit.
> 1) it should be displaying the FileNotFoundException in the logs, in the 
> general case
> 2) it should be displaying a friendly error message in this specific case

-- 
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



[jira] Assigned: (CONTINUUM-94) don't show "Result" if building is in progress

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-94?page=all ]

Jason van Zyl reassigned CONTINUUM-94:
--

Assign To: Jason van Zyl

> don't show "Result" if building is in progress
> --
>
>  Key: CONTINUUM-94
>  URL: http://jira.codehaus.org/browse/CONTINUUM-94
>  Project: Continuum
> Type: Improvement
>   Components: continuum-web
> Reporter: Brett Porter
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> this just leads to an incorrect result page, so remove the link and make the 
> page display "in progress" or some such instead.

-- 
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



[jira] Assigned: (CONTINUUM-101) When pressing "build" in the web interface a build should be forced

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-101?page=all ]

Jason van Zyl reassigned CONTINUUM-101:
---

Assign To: Jason van Zyl

> When pressing "build" in the web interface a build should be forced
> ---
>
>  Key: CONTINUUM-101
>  URL: http://jira.codehaus.org/browse/CONTINUUM-101
>  Project: Continuum
> Type: Improvement
>   Components: continuum-web
> Reporter: Trygve Laugstol
> Assignee: Jason van Zyl
>  Fix For: 1.0-alpha-2

>
>
> Not forcing a build can be optional but the default should be to force it.

-- 
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



[jira] Assigned: (CONTINUUM-110) do not add a build result when no build occurs

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-110?page=all ]

Jason van Zyl reassigned CONTINUUM-110:
---

Assign To: Trygve Laugstol

> do not add a build result when no build occurs
> --
>
>  Key: CONTINUUM-110
>  URL: http://jira.codehaus.org/browse/CONTINUUM-110
>  Project: Continuum
> Type: Improvement
> Versions: 1.0-alpha-1
> Reporter: Brett Porter
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>


-- 
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



[jira] Assigned: (CONTINUUM-19) Deal with signalled projects on startup

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-19?page=all ]

Jason van Zyl reassigned CONTINUUM-19:
--

Assign To: Trygve Laugstol

> Deal with signalled projects on startup
> ---
>
>  Key: CONTINUUM-19
>  URL: http://jira.codehaus.org/browse/CONTINUUM-19
>  Project: Continuum
> Type: Improvement
>   Components: continuum-core
> Reporter: Trygve Laugstol
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> Either
>  - enqueue all signalled projects
>  - remove them
>- Set to the old state?
>- Remove the build request?

-- 
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



[jira] Assigned: (CONTINUUM-2) Add mail type info to the project descriptor.

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-2?page=all ]

Jason van Zyl reassigned CONTINUUM-2:
-

Assign To: Trygve Laugstol

> Add mail type info to the project descriptor.
> -
>
>  Key: CONTINUUM-2
>  URL: http://jira.codehaus.org/browse/CONTINUUM-2
>  Project: Continuum
> Type: Improvement
>   Components: continuum-core
> Reporter: Trygve Laugstol
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> Continuum should be able to send text/plain and text/html mails based on the 
> project configuration.

-- 
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



[jira] Assigned: (CONTINUUM-25) Add the possibility to define a branch/tag for a build.

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-25?page=all ]

Jason van Zyl reassigned CONTINUUM-25:
--

Assign To: Trygve Laugstol

> Add the possibility to define a branch/tag for a build.
> ---
>
>  Key: CONTINUUM-25
>  URL: http://jira.codehaus.org/browse/CONTINUUM-25
>  Project: Continuum
> Type: Bug
>   Components: continuum-web
> Reporter: Emmanuel Venisse
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>


-- 
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



[jira] Assigned: (CONTINUUM-87) Create XmlRpc integration tests that utilize the addXProject methods

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-87?page=all ]

Jason van Zyl reassigned CONTINUUM-87:
--

Assign To: Trygve Laugstol

> Create XmlRpc integration tests that utilize the addXProject methods
> 
>
>  Key: CONTINUUM-87
>  URL: http://jira.codehaus.org/browse/CONTINUUM-87
>  Project: Continuum
> Type: Task
> Versions: 1.0-alpha-2
> Reporter: Jason van Zyl
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> We need to test the project specific methods in the integration tests like 
> addMavenOneProject, addMavenTwoProject, addAntProject and addShellProject. 
> The update and remove analogs as well.

-- 
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



[jira] Assigned: (CONTINUUM-73) Put sensible defaults into maven-settings.xml

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-73?page=all ]

Jason van Zyl reassigned CONTINUUM-73:
--

Assign To: Trygve Laugstol

> Put sensible defaults into maven-settings.xml
> -
>
>  Key: CONTINUUM-73
>  URL: http://jira.codehaus.org/browse/CONTINUUM-73
>  Project: Continuum
> Type: Task
> Versions: 1.0-alpha-1
> Reporter: Trygve Laugstol
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> The current maven-settings.xml in the Plexus application is empty and should 
> contain some explanatory commented settings for proxies and upload servers. A 
> link to the settings model reference too perhaps.

-- 
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



[jira] Assigned: (CONTINUUM-86) Use constants in addXProject methods

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-86?page=all ]

Jason van Zyl reassigned CONTINUUM-86:
--

Assign To: Trygve Laugstol

> Use constants in addXProject methods
> 
>
>  Key: CONTINUUM-86
>  URL: http://jira.codehaus.org/browse/CONTINUUM-86
>  Project: Continuum
> Type: Improvement
> Versions: 1.0-alpha-2
> Reporter: Jason van Zyl
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> I wanted to change the "maven-1", and "maven2" string literals in the 
> addXProject methods but I was afraid I might bust something else. I wanted to 
> change them to "mavenOne" and "mavenTwo" but I'll wait until a constant is 
> used.

-- 
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



[jira] Assigned: (CONTINUUM-89) Get rid of the use of configurations (properties) in the type specific project subclasses

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-89?page=all ]

Jason van Zyl reassigned CONTINUUM-89:
--

Assign To: Trygve Laugstol

> Get rid of the use of configurations (properties) in the type specific 
> project subclasses
> -
>
>  Key: CONTINUUM-89
>  URL: http://jira.codehaus.org/browse/CONTINUUM-89
>  Project: Continuum
> Type: Improvement
> Versions: 1.0-alpha-2
> Reporter: Jason van Zyl
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> We don't really need a properties attached to the subclasses of 
> ContinuumProject. We'll just use the fields of the subclasses.

-- 
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



[jira] Assigned: (CONTINUUM-88) Most of the add python scripts don't work

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-88?page=all ]

Jason van Zyl reassigned CONTINUUM-88:
--

Assign To: Trygve Laugstol

> Most of the add python scripts don't work
> -
>
>  Key: CONTINUUM-88
>  URL: http://jira.codehaus.org/browse/CONTINUUM-88
>  Project: Continuum
> Type: Bug
> Versions: 1.0-alpha-2
> Reporter: Jason van Zyl
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> They either point in the wrong place or just don't work. They all need to be 
> updated and fixed.

-- 
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



[jira] Assigned: (CONTINUUM-62) logs are obscure

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-62?page=all ]

Jason van Zyl reassigned CONTINUUM-62:
--

Assign To: Trygve Laugstol

> logs are obscure
> 
>
>  Key: CONTINUUM-62
>  URL: http://jira.codehaus.org/browse/CONTINUUM-62
>  Project: Continuum
> Type: Improvement
>   Components: continuum-core
> Reporter: Brett Porter
> Assignee: Trygve Laugstol
>  Fix For: 1.0-alpha-2

>
>
> the plexus logging logs are buried in the application, not shown in the 
> standard output, and seem to only record one message at a time before rolling 
> over. When a project checkout fails it is really hard to find the cause, 
> where it should probably be shown on the web page instead of the exception

-- 
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



[jira] Assigned: (CONTINUUM-66) m2 install should work for continuum-plexus-application

2005-04-30 Thread Jason van Zyl (JIRA)
 [ http://jira.codehaus.org/browse/CONTINUUM-66?page=all ]

Jason van Zyl reassigned CONTINUUM-66:
--

Assign To: Trygve Laugstol

> m2 install should work for continuum-plexus-application
> ---
>
>  Key: CONTINUUM-66
>  URL: http://jira.codehaus.org/browse/CONTINUUM-66
>  Project: Continuum
> Type: Bug
> Reporter: Brett Porter
> Assignee: Trygve Laugstol
> Priority: Minor
>  Fix For: 1.0-alpha-2

>
>
> the plexus:* goals registered should bind to appropriate lifecycle phases 
> (package?)
> We may need an assemble phase after package, before install as well.
> This could possibly be done automatically by a  type for the :app 
> goal (so its goal configuration would not be needed), but the runtime goals 
> must be listed.

-- 
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



[jira] Commented: (MNG-338) provide some hand holding for dependencies on non-distributable jars

2005-04-30 Thread Ryan Sonnek (JIRA)
 [ http://jira.codehaus.org/browse/MNG-338?page=comments#action_38361 ]
 
Ryan Sonnek commented on MNG-338:
-

as an example, geronimo has an implementation of the java transaction api, so i 
could use that AS the jdbc jar.  any timeline on this?

> provide some hand holding for dependencies on non-distributable jars
> 
>
>  Key: MNG-338
>  URL: http://jira.codehaus.org/browse/MNG-338
>  Project: m2
> Type: New Feature
>   Components: maven-artifact, maven-plugins, maven-model
> Reporter: Brett Porter
>  Fix For: 2.0-alpha-2

>
>
> We can create POMs for things like jdbc, jdo, etc, and just not house the 
> JARs at ibiblio.
> An attempt to use them, when not present locally, should provide a sensible 
> error message.
> We should provide a plugin that will install a file in the local repository, 
> ie:
> m2 install:install -Dartifact=/path/to/jdbc-2.0.jar -DgroupId=jdbc 
> -DartifactId=jdbc -Dversion=2.0
> (modify the install:install mojo to allow taking these parameters instead of 
> a #project)

-- 
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]



results of synchronize

2005-04-30 Thread maven
Syncing Apache Software Foundation
Syncing Codehaus
Syncing Maven Plugins @ SourceForge
Syncing Mortbay Consulting
Syncing Open Symphony
Syncing OS Java
mypath: /home/projects/maven/repository-tools/repoclean/repoclean.sh
Setting mydir based on mypath...
mydir: /home/projects/maven/repository-tools/repoclean
[INFO] Creating reports directory: 
'/home/projects/maven/repository-staging/to-ibiblio/reports/repoclean/30-Apr-2005_12.00.23'
[INFO] Source repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven'
[INFO] Target repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven2'
[INFO] Discovering artifacts.
[WARNING] Cannot parse version from artifact path: 'activemq/jars/xmltypes.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[xmltypes]'
[WARNING] Cannot parse version from artifact path: 
'avalon-repository/propertiess/repository.properties'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[repository]'
[WARNING] Cannot parse version from artifact path: 'crossdb/jars/crossdb.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[crossdb]'
[WARNING] Cannot parse version from artifact path: 
'drools/distributions/distributions.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[distributions]'
[WARNING] Cannot parse version from artifact path: 'javacc/jars/JavaCC.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[JavaCC]'
[WARNING] Cannot parse version from artifact path: 'jdring/jars/jdring.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[jdring]'
[WARNING] Cannot parse version from artifact path: 'maven/jars/maven.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[maven]'
[WARNING] Cannot parse version from artifact path: 'picocontainer/poms/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.01.000alpha.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.02.000beta.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'tomcat/jars/tomcat3.2.1.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[tomcat3.2.1]'
[WARNING] Cannot parse version from artifact path: 'trygvis/1/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 'xdoclet-plugins/poms/xx'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[INFO] Rewriting POMs and artifact files.
[INFO] Rewriting up to 7848 artifacts (Should be 15696 rewrites including POMs).
[INFO] Actual number of artifacts rewritten: 0 (0 including POMs).
[WARNING] Warning encountered while rewriting one or more artifacts from source 
repository to target repository.
building file list ... done
last-sync.txt
wrote 622980 bytes  read 42 bytes  13692.79 bytes/sec
total size is 2533642720  speedup is 4066.70
building file list ... done
.index.txt
last-sync.txt
wrote 1021701 bytes  read 2794 bytes  9619.67 bytes/sec
total size is 3388026107  speedup is 3307.02

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



results of synchronize

2005-04-30 Thread maven
Syncing Apache Software Foundation
Syncing Codehaus
Syncing Maven Plugins @ SourceForge
Syncing Mortbay Consulting
Syncing Open Symphony
Syncing OS Java
mypath: /home/projects/maven/repository-tools/repoclean/repoclean.sh
Setting mydir based on mypath...
mydir: /home/projects/maven/repository-tools/repoclean
[INFO] Creating reports directory: 
'/home/projects/maven/repository-staging/to-ibiblio/reports/repoclean/30-Apr-2005_08.01.17'
[INFO] Source repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven'
[INFO] Target repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven2'
[INFO] Discovering artifacts.
[WARNING] Cannot parse version from artifact path: 'activemq/jars/xmltypes.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[xmltypes]'
[WARNING] Cannot parse version from artifact path: 
'avalon-repository/propertiess/repository.properties'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[repository]'
[WARNING] Cannot parse version from artifact path: 'crossdb/jars/crossdb.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[crossdb]'
[WARNING] Cannot parse version from artifact path: 
'drools/distributions/distributions.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[distributions]'
[WARNING] Cannot parse version from artifact path: 'javacc/jars/JavaCC.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[JavaCC]'
[WARNING] Cannot parse version from artifact path: 'jdring/jars/jdring.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[jdring]'
[WARNING] Cannot parse version from artifact path: 'maven/jars/maven.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[maven]'
[WARNING] Cannot parse version from artifact path: 'picocontainer/poms/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.01.000alpha.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.02.000beta.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'tomcat/jars/tomcat3.2.1.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[tomcat3.2.1]'
[WARNING] Cannot parse version from artifact path: 'trygvis/1/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 'xdoclet-plugins/poms/xx'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[INFO] Rewriting POMs and artifact files.
[INFO] Rewriting up to 7848 artifacts (Should be 15696 rewrites including POMs).
[INFO] Actual number of artifacts rewritten: 2 (4 including POMs).
[WARNING] Warning encountered while rewriting one or more artifacts from source 
repository to target repository.
building file list ... done
last-sync.txt
xstream/distributions/
xstream/jars/
xstream/jars/xstream-1.1.2.jar
wrote 869915 bytes  read 58 bytes  14871.33 bytes/sec
total size is 2533642720  speedup is 2912.32
building file list ... done
.index.txt
last-sync.txt
xstream/xstream/
xstream/xstream/1.1.2/
xstream/xstream/1.1.2/xstream-1.1.2.jar
xstream/xstream/1.1.2/xstream-1.1.2.jar.md5
xstream/xstream/1.1.2/xstream-1.1.2.jar.sha1
xstream/xstream/1.1.2/xstream-1.1.2.pom
xstream/xstream/1.1.2/xstream-1.1.2.pom.md5
xstream/xstream/1.1.2/xstream-1.1.2.pom.sha1
xstream/xstream/1.1.2/xstream-1.1.2.zip
xstream/xstream/1.1.2/xstream-1.1.2.zip.md5
xstream/xstream/1.1.2/xstream-1.1.2.zip.sha1
wrote 3434920 bytes  read 2938 bytes  16567.99 bytes/sec
total size is 3388026107  speedup is 985.50

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



[jira] Commented: (MPDASHBOARD-23) Dashboard history

2005-04-30 Thread Morten Kristiansen (JIRA)
 [ 
http://jira.codehaus.org/browse/MPDASHBOARD-23?page=comments#action_38351 ]
 
Morten Kristiansen commented on MPDASHBOARD-23:
---

I actually have another plugin (that's were we started) that plots history pr 
project. I used the dashboard aggregators to collect data and suddently 
realized that the best place to have the data is in the dashboard report itself 
(if you have more than 3 modules, the pr project report is somewhat cumbersome 
to browse; it is in fact the exact same numbers be hind both reports!).

I'm already a commiter to Maven Plugins @ SF, so here's what I'll do:

- rename plugin to maven-history-plugin
- merge content so it supports both pr project and dashboard report
- create som good example reports
- send out links to [EMAIL PROTECTED] and Philippe and get some input
- commit and release

morten

> Dashboard history
> -
>
>  Key: MPDASHBOARD-23
>  URL: http://jira.codehaus.org/browse/MPDASHBOARD-23
>  Project: maven-dashboard-plugin
> Type: New Feature
> Versions: 1.7
> Reporter: Morten Kristiansen
> Priority: Trivial

>
>
> We have created functionallity for dashboard history graphs. As for now, this 
> is implemented in a maven-dashboard-ext-plugin, which only have a postGoal to 
> dashboard:xdocs which:
> - Collects data from dashboard-report.xml file and adds it to a history xml 
> file.
> - Images are plotted (using JFreeChart, JCommon and DOM4J).
> - XML files are added to generated-xdocs with links to plotted images
> - Additional code in dashboard.jsl creates links to plotted images page on 
> aggregator labels.
> I'm currently working on a sample project so you can have a look at it. The 
> question is; can it be bundled with the current Dashboard plugin with 
> reference to JFreeChart etc (licenses and so on...)?

-- 
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]



results of synchronize

2005-04-30 Thread maven
Syncing Apache Software Foundation
Syncing Codehaus
Syncing Maven Plugins @ SourceForge
Syncing Mortbay Consulting
Syncing Open Symphony
Syncing OS Java
mypath: /home/projects/maven/repository-tools/repoclean/repoclean.sh
Setting mydir based on mypath...
mydir: /home/projects/maven/repository-tools/repoclean
[INFO] Creating reports directory: 
'/home/projects/maven/repository-staging/to-ibiblio/reports/repoclean/30-Apr-2005_04.00.41'
[INFO] Source repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven'
[INFO] Target repository is at: 
'/home/projects/maven/repository-staging/to-ibiblio/maven2'
[INFO] Discovering artifacts.
[WARNING] Cannot parse version from artifact path: 'activemq/jars/xmltypes.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[xmltypes]'
[WARNING] Cannot parse version from artifact path: 
'avalon-repository/propertiess/repository.properties'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[repository]'
[WARNING] Cannot parse version from artifact path: 'crossdb/jars/crossdb.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[crossdb]'
[WARNING] Cannot parse version from artifact path: 
'drools/distributions/distributions.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[distributions]'
[WARNING] Cannot parse version from artifact path: 'javacc/jars/JavaCC.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[JavaCC]'
[WARNING] Cannot parse version from artifact path: 'jdring/jars/jdring.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[jdring]'
[WARNING] Cannot parse version from artifact path: 'maven/jars/maven.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[maven]'
[WARNING] Cannot parse version from artifact path: 'picocontainer/poms/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.01.000alpha.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.tar.gz'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/distributions/prevayler2.02.000beta.zip'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.01.000alpha.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.01.000alpha]'
[WARNING] Cannot parse version from artifact path: 
'prevayler/jars/prevayler2.02.000beta.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[prevayler2.02.000beta]'
[WARNING] Cannot parse version from artifact path: 
'tomcat/jars/tomcat3.2.1.jar'.
[INFO] artifact-version-classifier-extension remaining tokens is: 
'[tomcat3.2.1]'
[WARNING] Cannot parse version from artifact path: 'trygvis/1/foo'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[WARNING] Cannot parse version from artifact path: 'xdoclet-plugins/poms/xx'.
[INFO] artifact-version-classifier-extension remaining tokens is: '[]'
[INFO] Rewriting POMs and artifact files.
[INFO] Rewriting up to 7846 artifacts (Should be 15692 rewrites including POMs).
[INFO] Actual number of artifacts rewritten: 0 (0 including POMs).
[WARNING] Warning encountered while rewriting one or more artifacts from source 
repository to target repository.
building file list ... done
last-sync.txt
wrote 622964 bytes  read 42 bytes  24431.61 bytes/sec
total size is 2533395853  speedup is 4066.41
building file list ... done
.index.txt
last-sync.txt
wrote 1021560 bytes  read 2794 bytes  4603.84 bytes/sec
total size is 3385614540  speedup is 3305.12

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