Re: Recommended procedure for fixing hash file syntax

2010-04-28 Thread Juven Xu
checksums on pgp signautes are deleted. On Wed, Apr 28, 2010 at 11:34 PM, sebb wrote: > On 28/04/2010, Juven Xu wrote: > > On Wed, Apr 28, 2010 at 11:05 PM, sebb wrote: > > > > > On 28/04/2010, Juven Xu wrote: > > > > you can use these shell scripts: > > > > > > > > find . -type f | xarg

Re: Fix for ARCHETYPE-202

2010-04-28 Thread Hervé BOUTEMY
I'll have a look at it in a few days thank you for this patch Regards, Hervé Le mercredi 28 avril 2010, Marco Rico-Gomez a écrit : > Hi all, > > I've submitted a minor patch for > http://jira.codehaus.org/browse/ARCHETYPE-202, which prevents users to run > mvn archetype:generate -DarchetypeCa

Re: Re : [VOTE] Release some Maven Archetypes

2010-04-28 Thread Hervé BOUTEMY
done in svn r939134. will be in next quickstart archetype version regards, Hervé Le mercredi 28 avril 2010, Julien HENRY a écrit : > Hi, > > Now that latest m-compiler-p version set Java 1.5 as default, I suggest to > update archetype quickstart to be Java 1.5 compliant: - JUnit 4 by default

Fix for ARCHETYPE-202

2010-04-28 Thread Marco Rico-Gomez
Hi all, I've submitted a minor patch for http://jira.codehaus.org/browse/ARCHETYPE-202, which prevents users to run mvn archetype:generate -DarchetypeCatalog=http://example.com if they are behind a http proxy. I'd like to ask if someone could review it. The "download logic" is implemented thr

Re: Recommended procedure for fixing hash file syntax

2010-04-28 Thread sebb
On 28/04/2010, Juven Xu wrote: > On Wed, Apr 28, 2010 at 11:05 PM, sebb wrote: > > > On 28/04/2010, Juven Xu wrote: > > > you can use these shell scripts: > > > > > > find . -type f | xargs -i sh -c 'sha1sum {} | cut -d " " -f1 > {}.sha1' > > > find . -type f | xargs -i sh -c 'md5sum {} |

Re: Recommended procedure for fixing hash file syntax

2010-04-28 Thread Juven Xu
On Wed, Apr 28, 2010 at 11:05 PM, sebb wrote: > On 28/04/2010, Juven Xu wrote: > > you can use these shell scripts: > > > > find . -type f | xargs -i sh -c 'sha1sum {} | cut -d " " -f1 > {}.sha1' > > find . -type f | xargs -i sh -c 'md5sum {} | cut -d " " -f1 > {}.md5' > > Thanks, I have alrea

Re: Recommended procedure for fixing hash file syntax

2010-04-28 Thread sebb
On 28/04/2010, Juven Xu wrote: > you can use these shell scripts: > > find . -type f | xargs -i sh -c 'sha1sum {} | cut -d " " -f1 > {}.sha1' > find . -type f | xargs -i sh -c 'md5sum {} | cut -d " " -f1 > {}.md5' Thanks, I have already created the fixed hashes. [BTW, the find command above ne

Re: Recommended procedure for fixing hash file syntax

2010-04-28 Thread Juven Xu
you can use these shell scripts: find . -type f | xargs -i sh -c 'sha1sum {} | cut -d " " -f1 > {}.sha1' find . -type f | xargs -i sh -c 'md5sum {} | cut -d " " -f1 > {}.md5' release artifacts and their hashes in central will never be updated unless manual fix is needed if your artifacts' hashes

Re: Recommended procedure for fixing hash file syntax

2010-04-28 Thread sebb
On 26/04/2010, sebb wrote: > What is the recommended procedure for fixing hash files in a Maven > repo that have the wrong syntax? I have seen the reply about using Nexus, but if the project does not use Nexus, what is the procedure? If I update the hashes in the release repo will these be prop

Re : [VOTE] Release some Maven Archetypes

2010-04-28 Thread Julien HENRY
Hi, Now that latest m-compiler-p version set Java 1.5 as default, I suggest to update archetype quickstart to be Java 1.5 compliant: - JUnit 4 by default - use latest m-compiler-p or keep the default one but set source/target to 1.5 Each time I use quickstart archetype this is the things I h