Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread Simone Tripodi
Hi Elijah, can you ell me please which version of digester you upgrated to, if any? TIA, have a nice day! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sun, Jul 31, 2011 at 12:03 AM, Elijah Zupancic eli...@zupancic.name wrote: Hi Simo, The test passed before the

Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread Phil Steitz
On 7/30/11 11:13 AM, Elijah Zupancic wrote: As part of my refactoring project with Apache Chain, I've been trying to update dependency versions. I tried to upgrade the maven parent configuration and the compile worked fine, but I have been getting a really odd unit test failure. Moreover, I

[GUMP@vmgump]: Project jakarta-turbine-jcs (in module apache-commons) failed

2011-07-31 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project jakarta-turbine-jcs has an issue affecting its community integration.

[GUMP@vmgump]: Project commons-proxy-test (in module apache-commons) failed

2011-07-31 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-proxy-test has an issue affecting its community integration. This

[continuum] BUILD FAILURE: Apache Commons - Commons Math - Default Maven 2 Build Definition (Java 1.5)

2011-07-31 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=10611projectId=97 Build statistics: State: Failed Previous State: Ok Started at: Sun 31 Jul 2011 14:29:05 + Finished at: Sun 31 Jul 2011 14:30:50 + Total time: 1m 45s Build Trigger: Schedule

Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread Elijah Zupancic
Here is the output from SVN diff: Index: pom.xml === --- pom.xml (revision 1152492) +++ pom.xml (working copy) @@ -21,7 +21,7 @@ parent groupIdorg.apache.commons/groupId

Re: Searching volunteer

2011-07-31 Thread Gerrit Jansen van Vuuren
Hi, Why not start a project on google code? or github? You can release an article to javalobby or theserverside and see if people are interested. If you provide good documentation with examples people can reference the APIs via the opensource hosting and maybe build a community around it.

Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread Phil Steitz
On 7/31/11 8:06 AM, Elijah Zupancic wrote: Here is the output from SVN diff: Index: pom.xml === --- pom.xml (revision 1152492) +++ pom.xml (working copy) @@ -21,7 +21,7 @@ parent

Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread David Karlsen
Try nuking the local maven repository in case something is corrupt? Den 31. juli 2011 17:07 skrev Elijah Zupancic eli...@zupancic.name følgende: Here is the output from SVN diff: Index: pom.xml === --- pom.xml (revision 1152492)

Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread Simone Tripodi
Hi Elijah, I'd investigate on Maven versions first as Phil suggested, before purging the local repo :P HTH, have a nice WE! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sun, Jul 31, 2011 at 6:23 PM, David Karlsen davidkarl...@gmail.com wrote: Try nuking the local

[continuum] BUILD FAILURE: Apache Commons - Commons Codec - Default Maven 2 Build Definition (Java 1.5)

2011-07-31 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=10625projectId=70 Build statistics: State: Failed Previous State: Ok Started at: Sun 31 Jul 2011 22:27:23 + Finished at: Sun 31 Jul 2011 22:28:08 + Total time: 45s Build Trigger: Schedule Build

[GUMP@vmgump]: Project jakarta-turbine-jcs (in module apache-commons) failed

2011-07-31 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project jakarta-turbine-jcs has an issue affecting its community integration.

Re: [chain] Upgrading to Maven parent version 21

2011-07-31 Thread Elijah Zupancic
My maven version is: Apache Maven 2.2.1 (rdebian-4) Java version: 1.6.0_16 Java home: /usr/lib/jvm/java-6-sun-1.6.0.16/jre Default locale: en_US, platform encoding: UTF-8 OS name: linux version: 2.6.35-30-generic arch: amd64 Family: unix So, it is 2.2.1 like you. I just logged in in another

[compress] ZIP64 Branch Merged to trunk

2011-07-31 Thread Stefan Bodewig
Hi, after the 1.2 release is out I've merged back the ZIP64 branch, which means compress' trunk now requires Java5. Before I merged the branch I created a new one from trunk in case we ever want to create a Java 1.4 compatible 1.2.1 release. The current status of ZIP64 support is: *

[ANNOUNCE] Apache Commons Compress 1.2 Released

2011-07-31 Thread Stefan Bodewig
The Apache Commons Compress team is pleased to announce the commons-compress-1.2 release! The Apache Commons Compress Library defines a Java API for working with ar, cpio, tar, zip, gzip and bzip2 files. Version 1.2 is a bug fix release and the last release expected to be compatible with Java

[math] Improving tests and performance of RandomGenerator implementations

2011-07-31 Thread Phil Steitz
In my own applications, I noticed what appears to be poor performance in the nextInt(int) method of the Mersenne twister, which I was using to *improve* speed. I think that for small n, the default implementation in BistreamGenerator may be running too many iterations. I am still figuring out