Re: [gradle-user] Gradle performance and CPU usage

2011-03-29 Thread Rickard Öberg
On 3/29/11 08:12 , Hans Dockter wrote: Hi Rickard, I have checked out qi4j-sdk to reproduce the problems. I ran into the following issues: 1.) I got a build failure at configuration time saying that 'tests:performance:entitystore' does not exists. I commented out the line in the

Re: [gradle-user] how to call a maven plugin using gradle

2011-03-29 Thread Elmar Kretzer
If there is an ANT version of your plugin, you can try calling it per exec. Elmar Am 28.03.2011 um 22:09 schrieb Adam Murdoch: On 29/03/2011, at 4:07 AM, shadowlaw wrote: hi, i'm trying to use gradle in a cxf project. And i was wondering how to call a maven plugin from within my

Re: [gradle-user] Gradle performance and CPU usage

2011-03-29 Thread Hans Dockter
On Tue, Mar 29, 2011 at 8:12 AM, Rickard Öberg rickardob...@gmail.comwrote: On 3/29/11 08:12 , Hans Dockter wrote: Hi Rickard, I have checked out qi4j-sdk to reproduce the problems. I ran into the following issues: 1.) I got a build failure at configuration time saying that

[gradle-user] [ANN] New XING group for Germany/Austria/Switzerland

2011-03-29 Thread Hans Dockter
Hi, we have created a XING group for Germany/Austria/Switzerland: https://www.xing.com/net/gradle The language for this group is German. Here is the description: Die Gruppe hat zwei Ziele. Sie informiert über Events und Neuigkeiten rund um Gradle und Gradleware und dient der inhaltlichen

[gradle-user] Re: Gradle performance and CPU usage

2011-03-29 Thread Philippe Lhoste
On 29/03/2011 04:52, Rickard Öberg wrote: I have all libraries in my local Maven repo. Isn't that enough? I just avoid Maven... :-) (that's why I went directly to Gradle) (I know, I suppose that a local Maven repo is probably distinct from Maven-the-tool itself.) And I don't know Ivy.

Re: [gradle-user] Re: Gradle performance and CPU usage

2011-03-29 Thread Steve Ebersole
The problem is that the notion of a repository is extremely valuable and unfortunately the maven repository (as in layout) is by far the most ubiquitious. But that notion is completely separate from maven-as-a-tool. On Tuesday, March 29, 2011, at 07:27 am, Philippe Lhoste wrote: On 29/03/2011

[gradle-user] Use local library as dependency in gradle

2011-03-29 Thread netextzhwa
Hi, I want to run my groovy (Geb) test project with gradle. I have all the dependency jar files in a local folder, and want to use gradle to build and run the project without needs to connect to internet. The build failed with error: Execution failed for task compileGroovy, you must assign a

Re: [gradle-user] Filtering Files in a Build

2011-03-29 Thread Steve Ebersole
I am having a tough time getting filtering to work. I am trying to create a zip file: task buildTutorialZip(type: Zip) { destinationDir = project.buildDir archiveName = 'hibernate-tutorials.zip' from 'src/main/docbook/quickstart/tutorials' filter(

Re: [gradle-user] Gradle performance and CPU usage

2011-03-29 Thread Graeme Rocher
FWIW we have the same problem in the Grails project. Running gradle idea on a single subproject takes well over 2 minutes to run But it seems specific to the idea task, other tasks don't seem to take as long We also can't setup our own Nexus or use one of the solutions provided since we're a

Re: [gradle-user] Gradle performance and CPU usage

2011-03-29 Thread Rene Groeschke
Hi Graeme, Am Di, 29.03.2011, 17:32, schrieb Graeme Rocher: FWIW we have the same problem in the Grails project. Running gradle idea on a single subproject takes well over 2 minutes to run But it seems specific to the idea task, other tasks don't seem to take as long We also can't setup

[gradle-user] Re: Gradle performance and CPU usage

2011-03-29 Thread Peter Niederwieser
Graeme Rocher-4 wrote: FWIW we have the same problem in the Grails project. Running quot;gradle ideaquot; on a single subproject takes well over 2 minutes to run But it seems specific to the idea task, other tasks don't seem to take as long In Gradle 0.9.x the IDEA plugin had a bug

[gradle-user] Dependency with a pom.xml that uses a parent version of RELEASE

2011-03-29 Thread Merlyn Albery-Speyer
Hi all, Does Gradle/Ivy have a way I can work with Maven pom.xml artifacts that use RELEASE versions? Gradle (1.0-m1) isn't able to find the parent pom for a dependency with this pom.xml element: parent artifactIdaproject-parent/artifactId groupIdagroup/groupId

[gradle-user] Re: how to call a maven plugin using gradle

2011-03-29 Thread shadowlaw
actually, it's an maven cxf plugin for generation java code from wsdl, and also i'm planning to use the jaxb plugin also -- View this message in context: http://gradle.1045684.n5.nabble.com/how-to-call-a-maven-plugin-using-gradle-tp4267941p4269679.html Sent from the gradle-user mailing list

RE: [gradle-user] Re: how to call a maven plugin using gradle

2011-03-29 Thread Magnus Rundberget
Hi, - for wsdl to java you could use an javaexec task with this: http://cxf.apache.org/docs/wsdl-to-java.htmlTo give you an idea; I've used another related java executable the other way around to generate a wsdl like so;(ps you probably won't need all these dependencies :-) cxfDeps = [

Re: [gradle-user] Re: how to call a maven plugin using gradle

2011-03-29 Thread Rene Groeschke
Hi, there is no buildin way to call maven plugins directly from gradle. you can use the ant task instead. there is a nice blog post about generating code from wsdl via gradle at http://bowerstudios.com/node/699 regards, René Am 29.03.11 18:45, schrieb shadowlaw: actually, it's an maven cxf

Re: [gradle-user] Use local library as dependency in gradle

2011-03-29 Thread Adam Murdoch
On 30/03/2011, at 1:28 AM, netextzhwa wrote: Hi, I want to run my groovy (Geb) test project with gradle. I have all the dependency jar files in a local folder, and want to use gradle to build and run the project without needs to connect to internet. The build failed with error:

Re: [gradle-user] Filtering Files in a Build

2011-03-29 Thread Adam Murdoch
On 30/03/2011, at 1:36 AM, Steve Ebersole wrote: I am having a tough time getting filtering to work. I am trying to create a zip file: task buildTutorialZip(type: Zip) { destinationDir = project.buildDir archiveName = 'hibernate-tutorials.zip' from