Re: How to generate hash digests with Maven Assembly

2009-11-10 Thread Sagara Gunathunga
aven-plugin/attach-artifact-mojo. > html > > -Original Message- > From: Steve Brannstrom [mailto:steveb...@gmail.com] > Sent: Tuesday, November 10, 2009 4:19 AM > To: Maven Users List > Subject: Re: How to generate hash digests with Maven Assembly > > Thanks  for the

RE: How to generate hash digests with Maven Assembly

2009-11-10 Thread Jamie Whitehouse
[mailto:steveb...@gmail.com] Sent: Tuesday, November 10, 2009 4:19 AM To: Maven Users List Subject: Re: How to generate hash digests with Maven Assembly Thanks for the reply. But we have .zip and .tar.gz archives and AFAIK not possible to deploy them to a repository, hence I don't think this approach

Re: How to generate hash digests with Maven Assembly

2009-11-10 Thread Anders Hammar
http://maven.apache.org/plugins/maven-install-plugin/examples/installing-checksums.html Don't think you can do that with the assembly plugin. I guess you can write your own plugin that does this for you, but the thing is that you're not doing it the Maven way so you somewhat on your own. (Maven wa

Re: How to generate hash digests with Maven Assembly

2009-11-10 Thread Steve Brannstrom
Thanks for the reply. But we have .zip and .tar.gz archives and AFAIK not possible to deploy them to a repository, hence I don't think this approach will wok for us. It is great if we can generate those digests with Assembly plug-in or with any other way using maven. Thanks, On 11/10/09, Anders

Re: How to generate hash digests with Maven Assembly

2009-11-10 Thread Anders Hammar
One way is if you use a repository manager (Nexus for instance), it will be generated for you when deploying. /Anders On Tue, Nov 10, 2009 at 09:52, Steve Brannstrom wrote: > Hi friends , > > We use Maven Assembly plug-in to create the binary and source > archives in .zip, .tar.gz formats . We