Re: [math] equals in Vector3D

2009-04-29 Thread Wolfgang Glas
Gilles Sadowski schrieb:
 L1 norm: equals(a, b, tolerance) = sum(abs(a-b))  tolerance
 L2 norm: equals(a, b, tolerance) = sqrt(sum((a-b)^2))  tolerance
 L-infinity norm: equals(a, b, tolerance) = max(abs(a-b))  tolerance

 All are useful.
 I'll guess for 3D vector the L2-norm is the more useful as it is
 invariant when physical orthonormal frames are changed.
 I'll check in the variant you prefer.
 
 [Cf. my other reply.]
 Should I still create an issue?

I'm currently not invovled in commons-math, but I've written substatntial amount
of numeric software.

My thought on this point is, that it is generally more feasible to implement a
bunch on distance methods like

  a.distance1(b)   ... L1-Norm
  a.distance(b)... L1-Norm (this is usually what the user wants as default)
  a.distanceInf(b) ... L∞-Norm

and have the user decide on what is equal in his particular situation.


There is a very good article on ieee754 equality under

  http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm

which contains an excessive discussion about various equality approaches.

IMHO it should be moreover considered to include the AlomostEquals2sComplement
method of this paper into commons-math if not done so far.

  Best regards,

   Wolfgang

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



[g...@vmgump]: Project commons-configuration-test (in module apache-commons) failed

2009-04-29 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-configuration-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 45 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-configuration-test :  Apache Commons


Full details are available at:

http://vmgump.apache.org/gump/public/apache-commons/commons-configuration-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -WARNING- Overriding Maven2 settings: 
[/srv/gump/public/workspace/apache-commons/configuration/gump_mvn_settings.xml]
 -DEBUG- (Gump generated) Maven2 Settings in: 
/srv/gump/public/workspace/apache-commons/configuration/gump_mvn_settings.xml
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/srv/gump/public/workspace/apache-commons/configuration/pom.xml
 -INFO- Project Reports in: 
/srv/gump/public/workspace/apache-commons/configuration/target/surefire-reports



The following work was performed:
http://vmgump.apache.org/gump/public/apache-commons/commons-configuration-test/gump_work/build_apache-commons_commons-configuration-test.html
Work Name: build_apache-commons_commons-configuration-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 1 min 43 secs
Command Line: mvn --batch-mode --settings 
/srv/gump/public/workspace/apache-commons/configuration/gump_mvn_settings.xml 
test 
[Working Directory: /srv/gump/public/workspace/apache-commons/configuration]
CLASSPATH: 
/usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/apache-commons/configuration/target/commons-configuration-1.7-SNAPSHOT.jar
-
  testAddNodesCopy(org.apache.commons.configuration.TestXMLConfiguration)
  testInitCopy(org.apache.commons.configuration.TestXMLConfiguration)
  testSetRootAttribute(org.apache.commons.configuration.TestXMLConfiguration)
  testLoadAndSaveFromFile(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveToURL(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveToStream(org.apache.commons.configuration.TestXMLConfiguration)
  testAutoSave(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveAttributes(org.apache.commons.configuration.TestXMLConfiguration)
  testCloneWithSave(org.apache.commons.configuration.TestXMLConfiguration)
  testEmptyElements(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveWithEncoding(org.apache.commons.configuration.TestXMLConfiguration)
  
testSaveWithNullEncoding(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveWithDoctype(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveWithDoctypeIDs(org.apache.commons.configuration.TestXMLConfiguration)
  testSubsetWithReload(org.apache.commons.configuration.TestXMLConfiguration)
  
testConfigurationAtWithReload(org.apache.commons.configuration.TestXMLConfiguration)
  
testConfigurationsAtWithReload(org.apache.commons.configuration.TestXMLConfiguration)
  testGetKeysWithReload(org.apache.commons.configuration.TestXMLConfiguration)
  testSetTextRootElement(org.apache.commons.configuration.TestXMLConfiguration)
  
testClearTextRootElement(org.apache.commons.configuration.TestXMLConfiguration)
  
testAutoSaveWithSubnodeConfig(org.apache.commons.configuration.TestXMLConfiguration)
  
testAutoSaveWithSubSubnodeConfig(org.apache.commons.configuration.TestXMLConfiguration)
  
testSaveDelimiterParsingDisabled(org.apache.commons.configuration.TestXMLConfiguration)
  
testSaveDelimiterParsingDisabledAttrs(org.apache.commons.configuration.TestXMLConfiguration)
  
testMultipleAttrValuesEscaped(org.apache.commons.configuration.TestXMLConfiguration)
  
testAutoSaveWithReloadingStrategy(org.apache.commons.configuration.TestXMLConfiguration)
  testAutoSaveAddNodes(org.apache.commons.configuration.TestXMLConfiguration)
  testAddNodesAndSave(org.apache.commons.configuration.TestXMLConfiguration)
  testRegisterEntityId(org.apache.commons.configuration.TestXMLConfiguration)
  
testSaveAfterCreateWithCopyConstructor(org.apache.commons.configuration.TestXMLConfiguration)
  testCopyRootName(org.apache.commons.configuration.TestXMLConfiguration)
  
testCopyRootNameNoDocument(org.apache.commons.configuration.TestXMLConfiguration)
  testSaveWithValidation(org.apache.commons.configuration.TestXMLConfiguration)
  
testSaveWithValidationFailure(org.apache.commons.configuration.TestXMLConfiguration)

Tests run: 1418, Failures: 0, Errors: 52, Skipped: 0

[INFO] 
[ERROR] BUILD FAILURE
[INFO] 

Re: [math] equals in Vector3D

2009-04-29 Thread Gilles Sadowski
Hi.
 
 There is a very good article on ieee754 equality under
 
   http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
 
 which contains an excessive discussion about various equality approaches.
 
 IMHO it should be moreover considered to include the 
 AlomostEquals2sComplement
 method of this paper into commons-math if not done so far.

It would be a nice addition to util.MathUtils.
I'll open another JIRA issue.

Thanks,
Gilles

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [math] equals in Vector3D

2009-04-29 Thread Wolfgang Glas
Gilles Sadowski schrieb:
 Hi.
  
 There is a very good article on ieee754 equality under

   http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm

 which contains an excessive discussion about various equality approaches.

 IMHO it should be moreover considered to include the 
 AlomostEquals2sComplement
 method of this paper into commons-math if not done so far.
 
 It would be a nice addition to util.MathUtils.
 I'll open another JIRA issue.

Could you please CC me to this issue. I'm surrentyl not involved in
commons-math, but I'm going to use it in a few weeks. Maybe I can contribute
code and/or testcases to this issue ;-)

  Regards,

Wolfgang

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [Validator] Request for Sandbox committer access

2009-04-29 Thread Donald Woods

Any questions?

I'm already implementing the API over in Geronimo -
https://issues.apache.org/jira/browse/GERONIMO-4619
http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-validation_1.0_spec/

and would like to help with the implementation, either in the Commons 
sandbox or in the Apache Labs.



-Donald


Donald Woods wrote:

Hi, as per this thread -
http://article.gmane.org/gmane.comp.jakarta.commons.devel/102683
I was wondering if I could have commit access to the Commons Validator 
sandbox, to help out with the JSR-303 Bean Validation implementation, to 
go along with the API I'm working on over in the Apache Geronimo Specs 
project?

  http://article.gmane.org/gmane.comp.java.geronimo.cvs/35974

I am currently a committer and PMC member on Apache Geronimo and a 
contributor to Apache OpenJPA.

Apache Id:  dwoods

You can view my recent OpenJPA activity on Nabble -
http://n2.nabble.com/user/UserNodes.jtp?user=166296
and my recent Geronimo activity on Nabble -
http://www.nabble.com/forum/Search.jtp?query=dwoodssort=datelocal=yforum=136 




Thanks,
Donald Woods


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [math] equals in Vector3D

2009-04-29 Thread Luc Maisonobe
Wolfgang Glas a écrit :
 Gilles Sadowski schrieb:
 Hi.
  
 There is a very good article on ieee754 equality under

   http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm

 which contains an excessive discussion about various equality approaches.

 IMHO it should be moreover considered to include the 
 AlomostEquals2sComplement
 method of this paper into commons-math if not done so far.
 It would be a nice addition to util.MathUtils.
 I'll open another JIRA issue.
 
 Could you please CC me to this issue. I'm surrentyl not involved in
 commons-math, but I'm going to use it in a few weeks. Maybe I can contribute
 code and/or testcases to this issue ;-)

Gilles sent me directly the patch, including tests, and I have checked
it in. If you want to check the implementation and the tests, you can
retrieve them from subversion.

Thanks for the help
Luc

 
   Regards,
 
 Wolfgang
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org
 
 


-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [parent] updating plugins versions and configuration ?

2009-04-29 Thread Rahul Akolkar
On Tue, Apr 28, 2009 at 10:42 AM,  luc.maison...@free.fr wrote:
 Hello,

 Trying to remove an annoying warning from maven, I noticed that 
 commons-parent 11 now uses old versions and deprecated configuration for some 
 plugins.

 The things I noticed are the following ones:

 version changes:
  maven-gpg-plugin                  1.0-alpha-4
  maven-install-plugin              2.3
  maven-source-plugin               2.1
  maven-assembly-plugin             2.2-beta-3
  maven-release-plugin              2.0-beta-9
  maven-antrun-plugin               1.3
  maven-bundle-plugin               2.0.0
  maven-project-info-reports-plugin 2.1.1
  maven-site-plugin                 2.0-beta-7
  jdepend-maven-plugin              2.0-beta-2

 versions and configuration changes:
  maven-javadoc-plugin              2.5
  (and aggregatefalse/aggregate should be removed)

 proposed additional plugins:
  maven-changes-plugin              2.1
  cobertura-maven-plugin            2.2
  clirr-maven-plugin                2.2.2
  findbugs-maven-plugin             2.1
  maven-pmd-plugin                  2.4
  maven-checkstyle-plugin           2.2
  (and change headerFile into headerLocation for the components which already 
 use it)

 What about updating commons-parent pom ?

snip/

Good to move to latest releases except where latest releases are buggy
in a manner that affects us :-) I'd suggest upgrading in the parent
snapshot, making a call for volunteers to try the parent snapshot,
leaving it out for a couple of weeks and then calling a vote (I'll try
to build with the snap parent if you give me a few days).

-Rahul

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: download_dbutils

2009-04-29 Thread Rahul Akolkar
On Tue, Apr 28, 2009 at 2:47 PM, Dan Fabulich d...@fabulich.com wrote:

 I'm so close to releasing DbUtils 1.2 I can taste it!

 http://commons.apache.org/downloads/download_dbutils.cgi

 This page only shows the 1.1 release, even though 1.2 is available in
 archives and on the mirrors.

 http://archive.apache.org/dist/commons/dbutils/binaries/

 What has to happen to fix the dbutils.cgi page?

snip/

Update this:

  
http://svn.apache.org/repos/asf/commons/proper/commons-build/trunk/downloads/downloads.xml

Then m1 build and deploy main Commons site (commons-build).

-Rahul

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [Validator] Request for Sandbox committer access

2009-04-29 Thread Rahul Akolkar
On Wed, Apr 29, 2009 at 4:20 PM, Jörg Schaible joerg.schai...@gmx.de wrote:
 Hi Donald,

 Donald Woods wrote:

 Any questions?

 I'm already implementing the API over in Geronimo -
 https://issues.apache.org/jira/browse/GERONIMO-4619

 http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-validation_1.0_spec/

 and would like to help with the implementation, either in the Commons
 sandbox or in the Apache Labs.

 sorry, I think you mail simply slipped in the traffic. Yes, our policy is
 that every Apache committer can have access to the Commons sandbox. I'll
 have a look who can set this up for you.

snip/

Yup, the Chair and others who can grant sandbox karma probably just
missed the email.

-Rahul

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: commons-build site

2009-04-29 Thread Henri Yandell
Go with Maven 1.0.2.

I seem to recall 1.1 not being too great.

On Wed, Apr 29, 2009 at 10:02 PM, Dan Fabulich d...@fabulich.com wrote:

 I've never used m1 before, and am attempting to follow Rahul's directions to
 deploy the commons-build site to fix the downlead page for dbutils.

 I downloaded maven-1.1 and tried running maven site:deploy.  It downloaded
 a bunch of stuff but then failed with the error below.

 Any idea what might be happening to me?

 Trying to get missing dependencies (and updated snapshots) required by Maven
 Tasklist Plug-in:
 - Attempting to download vdoclet:vdoclet:20020711:jar from
 http://repo1.maven.org/maven
 76K downloaded
 - Attempting to download vdoclet:qdox:current:jar from
 http://repo1.maven.org/maven
 ---

 Unable to obtain goal [site:deploy]
 The build cannot continue because of the following unsatisfied
 dependency:

 - vdoclet:qdox:current:jar

 ---
 BUILD FAILED
 ---
 Total time   : 1 minutes 4 seconds
 Finished at  : Wednesday, April 29, 2009 9:54:56 PM PDT
 Final Memory : 5M/10M
 ---

 Rahul Akolkar wrote:

 On Tue, Apr 28, 2009 at 2:47 PM, Dan Fabulich d...@fabulich.com wrote:

 I'm so close to releasing DbUtils 1.2 I can taste it!

 http://commons.apache.org/downloads/download_dbutils.cgi

 This page only shows the 1.1 release, even though 1.2 is available in
 archives and on the mirrors.

 http://archive.apache.org/dist/commons/dbutils/binaries/

 What has to happen to fix the dbutils.cgi page?

 snip/

 Update this:


  http://svn.apache.org/repos/asf/commons/proper/commons-build/trunk/downloads/downloads.xml

 Then m1 build and deploy main Commons site (commons-build).

 -Rahul

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org




 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [Validator] Request for Sandbox committer access

2009-04-29 Thread Henri Yandell
On Wed, Apr 29, 2009 at 3:17 PM, Rahul Akolkar rahul.akol...@gmail.com wrote:
 On Wed, Apr 29, 2009 at 4:20 PM, Jörg Schaible joerg.schai...@gmx.de wrote:
 Hi Donald,

 Donald Woods wrote:

 Any questions?

 I'm already implementing the API over in Geronimo -
 https://issues.apache.org/jira/browse/GERONIMO-4619

 http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-validation_1.0_spec/

 and would like to help with the implementation, either in the Commons
 sandbox or in the Apache Labs.

 sorry, I think you mail simply slipped in the traffic. Yes, our policy is
 that every Apache committer can have access to the Commons sandbox. I'll
 have a look who can set this up for you.

 snip/

 Yup, the Chair and others who can grant sandbox karma probably just
 missed the email.

Done.

Hen

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [COLLECTIONS] 3.3 release

2009-04-29 Thread Henri Yandell
3.3 is a whole load of bugfixes that have accumulated. I added a few
more likely tickets.

I've been paying more attention to Jakarta Taglibs and trying to get
JSTL out there than Collections (which is a bit of an indictment on my
mental state as that's meant mavenizing that project rather than
working out Collections' situation).

I'm not sure if Collections is releasable from Maven2 - that's the
next step for 3.3 to figure out if anything needs to change to make it
more akin to the others.

Hen

On Tue, Apr 28, 2009 at 2:27 PM, Gary Gregory
ggreg...@seagullsoftware.com wrote:
 I think adding generics would be great. Even if the next version only adds 
 generics, that is reason enough for me to help and upgrade our apps. Release 
 early, release often.

 Gary

 -Original Message-
 From: Dave Meikle [mailto:loo...@gmail.com]
 Sent: Tuesday, April 28, 2009 11:09 AM
 To: dev@commons.apache.org
 Subject: [COLLECTIONS] 3.3 release

 Hi,

 I know late last year Henri spoke about doing a 3.3 release of Collections
 but I assume other commitments took over - this certainly keeps happening
 to
 me just now.

 I see there are some new tickets that need some minor work, so was
 wondering
 what are the current plans?

 Apologises if I have missed a previous posting on this.

 Cheers,
 Dave

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: download_dbutils

2009-04-29 Thread Henri Yandell
You should have karma - it's no different from the others. Do you have
it checked out under http:// ?

Hen

On Wed, Apr 29, 2009 at 9:51 PM, Dan Fabulich d...@fabulich.com wrote:

 Thanks, Rahul...  It appears that I don't have karma to check-in to
 commons-build.  Can someone grant that to me?  (For now, I'll try to deploy
 a site using my working copy.)

 Rahul Akolkar wrote:

 On Tue, Apr 28, 2009 at 2:47 PM, Dan Fabulich d...@fabulich.com wrote:

 I'm so close to releasing DbUtils 1.2 I can taste it!

 http://commons.apache.org/downloads/download_dbutils.cgi

 This page only shows the 1.1 release, even though 1.2 is available in
 archives and on the mirrors.

 http://archive.apache.org/dist/commons/dbutils/binaries/

 What has to happen to fix the dbutils.cgi page?

 snip/

 Update this:


  http://svn.apache.org/repos/asf/commons/proper/commons-build/trunk/downloads/downloads.xml

 Then m1 build and deploy main Commons site (commons-build).

 -Rahul

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org




 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [COLLECTIONS] 3.3 release

2009-04-29 Thread James Carman
I would love to see a collections version that is based on
commons-functor (once it's generified).

On Thu, Apr 30, 2009 at 1:14 AM, Henri Yandell flame...@gmail.com wrote:
 3.3 is a whole load of bugfixes that have accumulated. I added a few
 more likely tickets.

 I've been paying more attention to Jakarta Taglibs and trying to get
 JSTL out there than Collections (which is a bit of an indictment on my
 mental state as that's meant mavenizing that project rather than
 working out Collections' situation).

 I'm not sure if Collections is releasable from Maven2 - that's the
 next step for 3.3 to figure out if anything needs to change to make it
 more akin to the others.

 Hen

 On Tue, Apr 28, 2009 at 2:27 PM, Gary Gregory
 ggreg...@seagullsoftware.com wrote:
 I think adding generics would be great. Even if the next version only adds 
 generics, that is reason enough for me to help and upgrade our apps. Release 
 early, release often.

 Gary

 -Original Message-
 From: Dave Meikle [mailto:loo...@gmail.com]
 Sent: Tuesday, April 28, 2009 11:09 AM
 To: dev@commons.apache.org
 Subject: [COLLECTIONS] 3.3 release

 Hi,

 I know late last year Henri spoke about doing a 3.3 release of Collections
 but I assume other commitments took over - this certainly keeps happening
 to
 me just now.

 I see there are some new tickets that need some minor work, so was
 wondering
 what are the current plans?

 Apologises if I have missed a previous posting on this.

 Cheers,
 Dave

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org



 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [sanselan] Next steps

2009-04-29 Thread Henri Yandell
Both Betwixt and Jelly are on the quiet side of dormant however.

My concern with Sanselan is that it gets us into the trademark game. I
like that Apache Commons Logging is all about the Apache trademark.

Still - not enough to cause pain and strife to the users who'll
already be dealing with maven repository changes and package name
changing :)

[good time to get in any backwards incompatible changes btw ;) ]

Hen

On Mon, Apr 27, 2009 at 11:44 PM, Carsten Ziegeler cziege...@apache.org wrote:
 I agree that the package name should be changed to o.a.c.x but I'm not
 so happy with changing the name. Sanselan is well-known in the java
 image world, so I would rather keep it.

 We already have Betwixt and Jelly, so we have two prominent libs not
 using a functional name.

 Carsten
 --
 Carsten Ziegeler
 cziege...@apache.org

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: commons-build site

2009-04-29 Thread Henri Yandell
Hang on I'm pretty sure the site is Maven2 based :)

On Wed, Apr 29, 2009 at 10:10 PM, Henri Yandell flame...@gmail.com wrote:
 Go with Maven 1.0.2.

 I seem to recall 1.1 not being too great.

 On Wed, Apr 29, 2009 at 10:02 PM, Dan Fabulich d...@fabulich.com wrote:

 I've never used m1 before, and am attempting to follow Rahul's directions to
 deploy the commons-build site to fix the downlead page for dbutils.

 I downloaded maven-1.1 and tried running maven site:deploy.  It downloaded
 a bunch of stuff but then failed with the error below.

 Any idea what might be happening to me?

 Trying to get missing dependencies (and updated snapshots) required by Maven
 Tasklist Plug-in:
 - Attempting to download vdoclet:vdoclet:20020711:jar from
 http://repo1.maven.org/maven
 76K downloaded
 - Attempting to download vdoclet:qdox:current:jar from
 http://repo1.maven.org/maven
 ---

 Unable to obtain goal [site:deploy]
 The build cannot continue because of the following unsatisfied
 dependency:

 - vdoclet:qdox:current:jar

 ---
 BUILD FAILED
 ---
 Total time   : 1 minutes 4 seconds
 Finished at  : Wednesday, April 29, 2009 9:54:56 PM PDT
 Final Memory : 5M/10M
 ---

 Rahul Akolkar wrote:

 On Tue, Apr 28, 2009 at 2:47 PM, Dan Fabulich d...@fabulich.com wrote:

 I'm so close to releasing DbUtils 1.2 I can taste it!

 http://commons.apache.org/downloads/download_dbutils.cgi

 This page only shows the 1.1 release, even though 1.2 is available in
 archives and on the mirrors.

 http://archive.apache.org/dist/commons/dbutils/binaries/

 What has to happen to fix the dbutils.cgi page?

 snip/

 Update this:


  http://svn.apache.org/repos/asf/commons/proper/commons-build/trunk/downloads/downloads.xml

 Then m1 build and deploy main Commons site (commons-build).

 -Rahul

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org




 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: commons-build site

2009-04-29 Thread Henri Yandell
Scratch that. Retract. I'm pretty sure that I was pretty wrong.

Time to veg as I'm clearly useless. Try Maven 1.0.2. :)

On Wed, Apr 29, 2009 at 10:27 PM, Henri Yandell flame...@gmail.com wrote:
 Hang on I'm pretty sure the site is Maven2 based :)

 On Wed, Apr 29, 2009 at 10:10 PM, Henri Yandell flame...@gmail.com wrote:
 Go with Maven 1.0.2.

 I seem to recall 1.1 not being too great.

 On Wed, Apr 29, 2009 at 10:02 PM, Dan Fabulich d...@fabulich.com wrote:

 I've never used m1 before, and am attempting to follow Rahul's directions to
 deploy the commons-build site to fix the downlead page for dbutils.

 I downloaded maven-1.1 and tried running maven site:deploy.  It downloaded
 a bunch of stuff but then failed with the error below.

 Any idea what might be happening to me?

 Trying to get missing dependencies (and updated snapshots) required by Maven
 Tasklist Plug-in:
 - Attempting to download vdoclet:vdoclet:20020711:jar from
 http://repo1.maven.org/maven
 76K downloaded
 - Attempting to download vdoclet:qdox:current:jar from
 http://repo1.maven.org/maven
 ---

 Unable to obtain goal [site:deploy]
 The build cannot continue because of the following unsatisfied
 dependency:

 - vdoclet:qdox:current:jar

 ---
 BUILD FAILED
 ---
 Total time   : 1 minutes 4 seconds
 Finished at  : Wednesday, April 29, 2009 9:54:56 PM PDT
 Final Memory : 5M/10M
 ---

 Rahul Akolkar wrote:

 On Tue, Apr 28, 2009 at 2:47 PM, Dan Fabulich d...@fabulich.com wrote:

 I'm so close to releasing DbUtils 1.2 I can taste it!

 http://commons.apache.org/downloads/download_dbutils.cgi

 This page only shows the 1.1 release, even though 1.2 is available in
 archives and on the mirrors.

 http://archive.apache.org/dist/commons/dbutils/binaries/

 What has to happen to fix the dbutils.cgi page?

 snip/

 Update this:


  http://svn.apache.org/repos/asf/commons/proper/commons-build/trunk/downloads/downloads.xml

 Then m1 build and deploy main Commons site (commons-build).

 -Rahul

 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org




 -
 To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
 For additional commands, e-mail: dev-h...@commons.apache.org





-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: commons-build site

2009-04-29 Thread Dan Fabulich


Well, there's no pom.xml in there that I can see.  Maven 1.0.2 reports a 
similar error:


xdoc:init:
[echo] Generates the directory structure required for xdocs
Attempting to download qdox-current.jar.
WARNING: Failed to download qdox-current.jar.

BUILD FAILED
File.. C:\Documents and 
Settings\dan.fabulich\.maven\cache\maven-xdoc-plugin-1.9.2\plugin.jelly
Element... attainGoal
Line.. 1006
Column 58
The build cannot continue because of the following unsatisfied dependency:

qdox-current.jar

Total time: 3 seconds
Finished at: Wed Apr 29 22:30:04 PDT 2009

Henri Yandell wrote:


Hang on I'm pretty sure the site is Maven2 based :)

On Wed, Apr 29, 2009 at 10:10 PM, Henri Yandell flame...@gmail.com wrote:

Go with Maven 1.0.2.

I seem to recall 1.1 not being too great.

On Wed, Apr 29, 2009 at 10:02 PM, Dan Fabulich d...@fabulich.com wrote:


I've never used m1 before, and am attempting to follow Rahul's directions to
deploy the commons-build site to fix the downlead page for dbutils.

I downloaded maven-1.1 and tried running maven site:deploy.  It downloaded
a bunch of stuff but then failed with the error below.

Any idea what might be happening to me?

Trying to get missing dependencies (and updated snapshots) required by Maven
Tasklist Plug-in:
- Attempting to download vdoclet:vdoclet:20020711:jar from
http://repo1.maven.org/maven
76K downloaded
- Attempting to download vdoclet:qdox:current:jar from
http://repo1.maven.org/maven
---


Unable to obtain goal [site:deploy]
The build cannot continue because of the following unsatisfied
dependency:


- vdoclet:qdox:current:jar

---
BUILD FAILED
---
Total time   : 1 minutes 4 seconds
Finished at  : Wednesday, April 29, 2009 9:54:56 PM PDT
Final Memory : 5M/10M
---

Rahul Akolkar wrote:


On Tue, Apr 28, 2009 at 2:47 PM, Dan Fabulich d...@fabulich.com wrote:


I'm so close to releasing DbUtils 1.2 I can taste it!

http://commons.apache.org/downloads/download_dbutils.cgi

This page only shows the 1.1 release, even though 1.2 is available in
archives and on the mirrors.

http://archive.apache.org/dist/commons/dbutils/binaries/

What has to happen to fix the dbutils.cgi page?


snip/

Update this:


 http://svn.apache.org/repos/asf/commons/proper/commons-build/trunk/downloads/downloads.xml

Then m1 build and deploy main Commons site (commons-build).

-Rahul

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org





-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org






-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org





-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org