Re: [gradle-user] Re: Problem with SHA1 signatures uploading to Maven

2010-12-13 Thread Luke Daley
Vaclav, I have a working build that can publish to codehaus nexus and therefore central. https://github.com/geb/geb It's a bit hairy so we may need to to talk interactively. Email me directly if you would like to discuss. On 13/12/2010, at 6:49 PM, Vaclav Pech vaclav.p...@gmail.com wrote:

Re: [gradle-user] Re: Problem with SHA1 signatures uploading to Maven

2010-12-13 Thread Vaclav Pech
Thank you, Adam, for the suggestions. - try a new version of the webdav-jackrabbit wagon (1.0-beta-7) - don't swallow exceptions when configuring the uploadArchives task. The GPars build has a big fat try/catch block around it which throws the exception away. It's possible something is

[gradle-user] Re: Gradle Plugin for a new framework

2010-12-13 Thread rajmahendra
yes, But i like to have this inside my plugin. i dont want to tell my user to do this in his build.gradle -- View this message in context: http://gradle.1045684.n5.nabble.com/Gradle-Plugin-for-a-new-framework-tp3298741p3302960.html Sent from the gradle-user mailing list archive at

[gradle-user] Gradle Archetype like Maven

2010-12-13 Thread rajmahendra
Is there any way to have something like Maven Archetype ? User do download Gradle and just using the gradle command line he can create a project structure with a pre written build.gradle file!! -- View this message in context:

Re: [gradle-user] Re: Problem with SHA1 signatures uploading to Maven

2010-12-13 Thread Graeme Rocher
We also had this problem with some of the NoSQL jars we published and it is a serious problem. A previous workaround I used was to to publish first with the webdav-jackrabbit wagon (1.0-beta-7) Unfortunately this resulted in bad SHA1 signatures so afterwards I published again using the plain

Re: [gradle-user] Re: Problem with SHA1 signatures uploading to Maven

2010-12-13 Thread Luke Daley
I'll write up the procedure on the Gradle wiki for deploying to nexus which solves these issues with deploying via codehaus. On 13/12/2010, at 9:31 PM, Graeme Rocher groc...@vmware.com wrote: We also had this problem with some of the NoSQL jars we published and it is a serious problem. A

Re: [gradle-user] Gradle Archetype like Maven

2010-12-13 Thread Tomek Kaczanowski
Is there any way to have something like Maven Archetype ? AFAIK no. There was some discussion on mailing lists - search for archetype on http://gradle.1045684.n5.nabble.com/ And there is no JIRA issue as well (or maybe I missed it). -- Regards / Pozdrawiam Tomek Kaczanowski User do download

Re: [gradle-user] Re: Problem with SHA1 signatures uploading to Maven

2010-12-13 Thread Vaclav Pech
Thank you Graeme for the hint. Seems like this is really a tricky issue. Luke Daley has meanwhile suggested using wagon-http-lightweight:1.0-beta-6, which seems to work for me, although with the same directory creation limitation. Cheers, Vaclav On Mon, Dec 13, 2010 at 12:31 PM, Graeme Rocher

Re: [gradle-user] Gradle Archetype like Maven

2010-12-13 Thread Jason Porter
On Mon, Dec 13, 2010 at 04:46, Tomek Kaczanowski kaczanowski.to...@gmail.com wrote: Is there any way to have something like Maven Archetype ? AFAIK no. There was some discussion on mailing lists - search for archetype on http://gradle.1045684.n5.nabble.com/ And there is no JIRA issue as well

Re: [gradle-user] Showing task progression

2010-12-13 Thread Adam Murdoch
On 14/12/2010, at 12:26 AM, Steven Devijver wrote: Hey, I've got a task where I have to parse thousands of files. I like the new ANSI output showing task execution information and I would like to piggy-back on that. What I would like to do is something like this: task my-task {

Re: [gradle-user] Re: calling task multiple times with different parameters

2010-12-13 Thread Adam Murdoch
On 10/12/2010, at 8:46 PM, richardm wrote: Is is possible to call a task in Gradle with different parameters? 1) Task rules could be one approach. 2) Or, you could dynamically create four tasks. Iterate over a list of 'parameters' and dynamically create a task for each element. See

Re: [gradle-user] Re: Gradle Plugin for a new framework

2010-12-13 Thread Robert Fischer
What does your plugin code look like right now? ~~ Robert. On 13 December 2010 06:11, rajmahendra rajmahen...@gmail.com wrote: yes, But i like to have this inside my plugin. i dont want to tell my user to do this in his build.gradle -- View this message in context:

[gradle-user] dsl reference guide

2010-12-13 Thread Adam Murdoch
Hi, I've been working on a DSL reference guide, to be included as part of the Gradle 0.9 release. This guide attempts to document the various properties, methods, types and so on that you can use in your build scripts. The audience is build script or plugin authors who understand the basic

Re: [gradle-user] Re: Problem with SHA1 signatures uploading to Maven

2010-12-13 Thread Adam Murdoch
On 13/12/2010, at 10:52 PM, Vaclav Pech wrote: Thank you Graeme for the hint. Seems like this is really a tricky issue. Luke Daley has meanwhile suggested using wagon-http-lightweight:1.0-beta-6, which seems to work for me, although with the same directory creation limitation. Could you