Gradle
Developer(s) | Hans Dockter, Adam Murdoch, Szczepan Faber, Peter Niederwieser, Luke Daley, Rene Gröschke, Daz DeBoer, Steve Appling |
---|---|
Stable release | 1.10[1] / 17 December 2013 |
Development status | Active |
Written in | Java, Groovy |
Operating system | Cross-platform |
Type | Build Tool |
License | Apache License 2.0 |
Website | www.gradle.org |
Gradle is a project automation tool that builds upon the concepts of Apache Ant and Apache Maven and introduces a Groovy-based domain-specific language (DSL) instead of the more traditional XML form of declaring the project configuration.
Unlike Apache Maven, which defines lifecycles, and Apache Ant, where targets are invoked based upon a depends-on partial ordering, Gradle utilizes a directed acyclic graph ("DAG") to determine the order in which tasks can be run.
Gradle was designed for multi-project builds which can grow to be quite large, and as such, it supports incremental builds by intelligently determining which parts of the build tree are up-to-date, so that any task dependent upon those parts will not need to be re-executed.
The initial plugins are primarily focused around Java, Groovy and Scala development and deployment, but more languages and project workflows are on the roadmap.
Example Java project
Consider the case where the Maven directory structure is used for Java sources and resources. These directories are: src/main/java, src/main/resources, src/test/java and src/test/resources.
build.gradle
apply plugin: 'java'
Running gradle build will result in
> gradle build:compileJava
:processResources
:classes
:jar
:assemble
:compileTestJava
:processTestResources
:testClasses
:test
:check
:build
BUILD SUCCESSFUL
The Java plugin emulates many of the expected Maven lifecycles as tasks in the directed acyclic graph of dependencies for the inputs and outputs of each task. For this simple case, the build task depends upon the outputs of the check and assemble tasks. Likewise, check depends upon test, and assemble depends upon jar.
For projects that do not follow the Maven conventions, Gradle allows the directory structure to be configured. The following example would support a project that contains source files in src/java rather than the src/main/java convention enforced by Maven.
build.gradle
apply plugin: 'java' sourceSets.main.java.srcDirs = ['src/java']
Example Ant migration
Gradle has a very tight integration with Ant, and even treats Ant build files as scripts that could be directly imported while building. The below example shows a simplistic Ant target being incorporated as a Gradle task.
build.xml
<project> <target name="ant.target"> <echo message="Running ant.target!"/> </target> </project>
build.gradle
ant.importBuild 'build.xml'
Running gradle ant.target will result in
> gradle ant.target:ant.target
[ant:echo] Running ant.target!
BUILD SUCCESSFUL
Version history
Version | Date |
---|---|
0.7 | 2009-07-20 |
0.8 | 2009-09-28 |
0.9 | 2010-12-19 |
1.0 | 2012-06-12 |
1.1 | 2012-07-31 |
1.2 | 2012-09-12 |
1.3 | 2012-11-20 |
1.4 | 2013-01-28 |
1.5 | 2013-03-27 |
1.6 | 2013-05-07 |
1.7 | 2013-08-06 |
1.8 | 2013-09-24 |
1.9 | 2013-11-19 |
1.10 | 2013-12-17 |
Past versions are available from Gradle's download page.
See also
References
Bibliography
- Berglund, Tim; McCullough, Matthew (July 2011). Building and Testing with Gradle. Foreword by Hans Dockter (First ed.). O'Reilly Media. p. 116. ISBN 978-1-4493-0463-8.
- Ikkink, Hubert (November 2012). Gradle Effective Implementation Guide (First ed.). Packt Publishing. p. 382. ISBN 978-1849518109.
- Berglund, Tim; McCullough, Matthew (May 2013 est.). Gradle DSLs (First ed.). O'Reilly Media. pp. 50 est. ISBN 978-1-4493-0467-6.
- Muschko, Benjamin (Fall 2013). Gradle In Action (First ed.). Manning Publications. p. 390. ISBN 9781617291302.
External links
- gradle.org
- gradleware.com for commercial Gradle support
- Gradle Summit 2013, June 13-14th, Santa Clara, CA
- Overview of Gradle
- Gradle presentation at San Francisco JUG by Gradle founder Hans Dockter
- Breaking Open: Gradle - An interview about Gradle and Gradleware, its history, motivation and challenges. With Gradle founder Hans Dockter and Aleksandar Gargenta.
- Standard plugins that ship with Gradle
- Gradle: Java Quickstart Guide
- Gradle: Groovy Quickstart Guide
- Examples of Ant usage within Gradle
- Gradle Forums
- Gradle Presentation
- Getting Started by schuchert
- Prototypes for gradle project