Tagged Questions

Gradle is a project automation tool. It's a Groovy DSL that lets the user write project build scripts in a more neat way, compared to Maven or Ant.

learn more… | top users | synonyms

70
votes
6answers
23k views

Why use Gradle instead of Ant or Maven?

What does another build tool targeted at Java really get me? If you use Gradle over another tool, why? (See also Why use Buildr instead of Ant or Maven)
37
votes
8answers
16k views

Buildr, Gradle or wait for Maven 3?

I am really tired of struggling with Maven 2 all the time. Build tools should not be in the way. Recently I have been looking at Buildr and Gradle. Maven 3 seems to fix some of the struggles. So, what ...
14
votes
4answers
752 views

How do I conditionally include or exclude a file from an archetype when project is generated?

I'm creating Maven 2 archetypes for our project (Weld). I would like to be able to control which files are placed into the generated project based on the value of a property that is defined during ...
10
votes
5answers
1k views

Gradle: Make a 3rd party jar available to local gradle repository

currently, I'm testing Gradle as an alternative to Maven. In my projects, there are some 3rd party jars, which aren't available in any (Maven) repositories. My problem is now, how could I manage it to ...
9
votes
3answers
543 views

Buildr vs Gradle, pros and cons?

Have somebody use both Buildr and Gradle and can make comparison of this build tools. From first look they are very similar. But what to choose. And also it is good to hear about Scala support and ...
9
votes
2answers
240 views

How to configure gradle to use a local repository only for certain dependency groups?

Working off the gradle dependency docs, we have a build.gradle with snippets like this. repositories { mavenCentral() ivy { name = 'localRepo' artifactPattern ...
8
votes
3answers
1k views

Gradle build without tests

I want to do a gradle build but not run the unit tests. I tried: $ gradle -Dskip.tests build but that doesn't seem to do anything. Is there something else I can do?
7
votes
3answers
836 views

gradle doesn't work in Intellij - problems with JAVA_HOME

I can run gradle from a command line to see its version. I can run, compile and debug a grails app in IntelliJ (version 10.0 or version 10.2) I installed the IntelliJ Gradle Plugin. Whenever I try ...
7
votes
3answers
2k views

How can I import one Gradle script into another?

I have a complex gradle script that wraps up a load of functionality around building and deploying a number of netbeans projects to a number of environments. The script works very well, but in ...
7
votes
1answer
523 views

Where can I find a single example expressed in Ivy, Maven, Gant, and Gradle?

I'd like to find a simple, non-trivial Java project that is expressed in terms of Ant + Ivy, Maven, Gant, and Gradle. I'm not interested in each tool's varied sample demos. Where can I find such an ...
6
votes
4answers
1k views

Run groovy script from within gradle

What's the best way to create a gradle task, which runs a groovy script? I realize that gradle build files are groovy, so I would think it would be possible to do something like this: task run ...
5
votes
1answer
133 views

Gradle Milestone 5 shows error about a missing artifact *#*!*.*

How can I resolved this error that I see in Gradle after upgrading to Milestone 5: :nodes-all:war :: problems summary :: :::: ERRORS a required artifact is not listed by module descriptor: ...
5
votes
3answers
608 views

Gradle vs. Gant

I'm working on a Linux/Apache/MySQL/Grails application and have the choice of build tools. I'm looking at Gradle or Gant. They look very similar to me, so I'm not sure what differentiates them. ...
5
votes
1answer
205 views

Anyone have experience in building an Eclipse RCP application with Gradle?

Does anyone have experience in building an application based on Eclipse RCP with Gradle? I'd like especially to know: How reasonable is it to build Eclipse RCP plugins and products with Gradle? Are ...
5
votes
6answers
435 views

Advice on a good Java build tool, well integrated with eclipse

I am working in a small team (3 persons) on several modules (about 10 currently). The compilation, integration and management of build versions is becoming more and more tedious. I am looking for a ...
5
votes
3answers
1k views

What are real-world examples of Gradle's dependency graph?

As noted in the documentation, Gradle uses a directed acyclic graph (DAG) to build a dependency graph. From my understanding, having separate cycles for evaluation and execution is a major feature for ...
4
votes
1answer
39 views

What's the meaning of 'sourceSets.all*'

I'm new to gradle & groovy, and I don't know the exact meaning of such a statement: sourceSets.all*.java Is it a valid groovy expression?
4
votes
1answer
87 views

How can I ensure that the processResources task of a gradle build always runs?

We have a strange issue where randomly and infrequently, the compileJava task which deletes the META-INF folder and compiled classes to start, runs but the processResources task reports up-to-date, ...
4
votes
2answers
182 views

Guide for Testing Gradle Scripts

What are the best practices for testing Gradle Scripts? I currently unit test my ant scripts with antunit, but I'm looking to migrate to Gradle. I can only find articles on testing Java code from ...
4
votes
2answers
184 views

Migration from Maven 2/3 to Gradle

I have been looking into Gradle and looks pretty interesting. I think being able to write your scripts in any other language than XML is pretty cool, and it is not clear to me whether polyglot Maven ...
4
votes
1answer
162 views

Gradle: How to configure multiproject setup with side-by-side projects

We have an old project that is set up like this: . ├── customizationProject │   ├── ejb │   └── services ├── projectA │   ├── ejb │   └── shared ├── projectB │   └── ejb └── projectC ├── ejb ...
4
votes
2answers
604 views

Multi-project test dependencies with gradle

I have a multi-project configuration and I want to use gradle. My projects are like this Project A -> src/main/java -> src/test/java Project B -> src/main/java (depends on src/main/java on ...
4
votes
4answers
770 views

Gradle Replace text in jsp using filter

I have a jsp that contains a css link that looks like <link type="text/css" href="/css/login-min.css" rel="stylesheet" /> In order to keep browsers from caching the css file we replace ...
4
votes
1answer
376 views

Gradle Test Dependency

I have two projects, project A and Project B. Both are written in groovy and use gradle as their build system. Project A requires project B. This holds for both the compile and test code. How can ...
4
votes
2answers
328 views

Gradle 0.9.2 with Appengine 1.4.2

Is there a Gradle plugin (compatible with Gradle 0.9.2) that'll let me deploy to Google App Engine 1.4.2? If yes, how can I integrate it (build.gradle snippet)?
4
votes
0answers
348 views

Debugging project generated by gradle on eclipse

I have same issue. The command "gradle eclipse" generated necessary eclipse WTP files. I could import project into eclipse but when I deploy to glassfish it does not copy anything to glassfish's ...
4
votes
1answer
463 views

How to use the maven ant task from gradle?

I am trying to publish some artifacts to the maven central repo and since the current version of gradle (0.9-rc2) does not handle pgp I though I would give it a try by 'porting' the ant xml version ...
4
votes
1answer
717 views

Is there a way to split/factor out common parts of Gradle build

We have several independent builds (each independent build is a multi-project build). The main build scripts become quite big as we have a set of common tasks reused by subprojects as well as there is ...
3
votes
1answer
21 views

Upload via SCP with Gradle

Inside a Java module build by Gradle, I want to upload the resulting JAR(s) of my project to a remote location which is reachable via SSH/SCP. All examples I found did not work inside my environment. ...
3
votes
2answers
50 views

How to use Gradle's Manifest API to insert a `MANIFEST.MF` file into the root of a zip file

We use the manifest attribute of the java plugin to write MANIFEST.MF files to our jar artifacts. We also use gradle to build GWT projects and the output we've defined for those projects is a zip. ...
3
votes
1answer
35 views

Using command line arguments or system properties from a Parameterized Junit test?

I use this method to setup my parameterized data: @Parameterized.Parameters public static Collection<Object[]> getStories() { Collection<Object[]> allStories = new ...
3
votes
2answers
36 views

How can I use Gradle's CreateStartScripts Task

I want to use gradle's CreateStartScripts Task to generate the script to start the application. I use it in the following way: apply plugin: 'java' mainClass = 'UIMain'; dependencies { compile ...
3
votes
2answers
42 views

Use case for the task buildNeeded?

I don't understand why there is the task 'buildNeeded' which is provided by the java plugin. Does not task 'build' solve the problem? The gradle documentation says: buildNeeded: Performs a full ...
3
votes
1answer
100 views

Mark Gradle build unstable in Jenkins when JUnit tests fail

I have a Gradle build in Jenkins with various JUnit tests that are executed as part of the build. Now when some of the tests fail the complete build is marked as failed - because Gradle says the build ...
3
votes
3answers
94 views

Gradle - Java Project - Generic For Loop

I have a very simple generic for loop that is causing problems when I attempt to build the project using gradle: for(TaskAttribute taskAttribute:task.getAttributes()) { ... } Task.java protected ...
3
votes
2answers
100 views

Gradle explode a zip into a buildDir

My project has a remote dependency which is really just a zip of certain files, which needs to be unzipped somewhere, so that the build can generate new java sources from the files. (I'm speaking ...
3
votes
2answers
95 views

Adapt AndroidAnnotations Maven settings to Gradle

Is it possible to adapt AndroidAnnotations Maven setup into Gradle? http://code.google.com/p/androidannotations/wiki/MavenEclipse I can't seem to make it work I keep getting ...
3
votes
1answer
147 views

How can I get ant behavior when expanding properties with gradle?

I have an ant project I'm converting to gradle. In the ant project, there is something like this: <copy todir="dest_dir"> <fileset> ... </fileset> <filterchain> ...
3
votes
4answers
360 views

How do I execute ant.java properly from gradle?

I'm trying to invoke a jar, but I don't see any output when I run the command without args, and when I do run with args, I get the following error: [ant:java] The args attribute is deprecated. Please ...
3
votes
2answers
154 views

Is recursive publishing possible / easy in Gradle?

We have an Ant and Ivy-based build management system, which basically consists of a shared ant file and a set of conventions around directory structure. One hurdle I'm trying to overcome is the ...
3
votes
5answers
1k views

Launching Gradle builds from Eclipse

We're looking at converting our Ant build to Gradle. In regards to integration with Eclipse, we are looking for (conceptually) equivalent functionality for launching builds from the IDE. Eclipse ...
3
votes
2answers
284 views

Help Evaluating Build Tools

I'm already familiar with and use Ant & Maven, at this point I'd like to branch out to another tool and I'm deciding between 'Buildr' and 'Gradle'. I'd appreciate insight/feedback from those that ...
3
votes
1answer
397 views

How can I create a pathing jar in Gradle

When running groovyc in a Windows env, I am running into issues due to the length of the classpath, in my situation. I would like to work around this by creating a pathing jar, and then put that jar ...
3
votes
1answer
556 views

gradle: custom jar task

I feel like I am missing something obvious here, but I can't seem to find it. I have a project, where I want my package structure like so /src /webapp /webapp-package-1 ...
3
votes
6answers
1k views

gradle: copy war to tomcat directory

I'm trying to write a Gradle task which copies generated war files to my local tomcat instance: This isn't working and I'm not sure how to debug it: task deploylocal() << { println "Copy ...
3
votes
2answers
625 views

Gradle: How to Display Test Results in the Console in Real Time?

I would like to see test results ( system.out/err, log messages from components being tested ) as they run in the same console I run: gradle test And not wait until tests are done to look at the ...
3
votes
1answer
239 views

What is the difference between these task definition syntaxes in gradle?

A) task build << { description = "Build task." ant.echo('build') } B) task build { description = "Build task." ant.echo('build') } I notice that with type B, the code within the task ...
3
votes
1answer
499 views

How to get a reference to the jar file produced by Gradle build?

I need to sign a jar after the jar task is being done in gradle. I have a need to reference the produced jar file from the build, and I can create recreate the jar file, but I really look for a ...
3
votes
1answer
1k views

How do I reference a classpath from Gradle 0.6

I have a project using Gradle as the build tool and I have to make use of the Ant Java task. One of the sub elements in this task is a reference to a classpath and I would like to use refid. The build ...
2
votes
4answers
66 views

Is it ok to use forward slashes instead of File.separator in my (Gradle) build files?

I don't see any obvious problems, but I'm wondering if it's ok to use / rather than File.separator when I'm writing my build files. Using File.separator makes it very difficult to read some of the ...

1 2 3 4 5