SlideShare a Scribd company logo
Monday, October 25, 2010
Gradle
A Better Way To Build
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
3
About Hans Dockter
• Founder, Gradle
• CEO, Gradle Inc.
• Before Gradle:
o Trainer, Mentor, Consultant
for Enterprise Java.
o Senior Developer for Krugle and
Volkswagen.
• Prehistoric ;): Committer to JBoss and founder of
JBoss-IDE.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• A general purpose build system
• It comes with a Groovy DSL and a Java core.
• Provides build-in support for Java, Groovy, Scala,
Web, OSGi projects.
• Gradle provides exciting solutions for many of the
big pain points you often have with current builds.
– Maintainability
– Performance
– Usability
4
What is Gradle?
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is Gradle?
Gradle is declarative
You specify the WHAT
Gradle figures out the HOW
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Extensible
Build Language
instead of a
Build Framework
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Deep Configuration API
• Deep Execution API
• Rich API
• Extendable Domain Objects
• Custom Tasks
• Custom Plugins
7
Extending Gradle
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Custom Declarative Elements
usePlugin ʻeditionsʼ
productEditions {
enterprise core, plugins, powerAddons
public core, plugins, openApi
}
> gradle enterpriseEditionZip
> gradle publicEditionTar
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Gradle
is
declarative
without
being rigid
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The Build Language
Source Sets
Dependencies
Configurations
Archives
Projects
Artifacts
Custom Tasks
Plugins
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
XML and the What
It does not matter much
whether a build system
uses XML or Groovy for
declaring things.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Please
no
messy
build scripts
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Separate Imperative from Declarative
• Custom Tasks/Plugins
• BuildSrc
• Jar
13
Organizing Build Logic
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
14
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'commons-math:commons-math:1.1'
}
}
task math << {
org.apache.commons.math.fraction.Fraction lhs = new
org.apache.commons.math.fraction.Fraction(1, 3);
// do something
}
Build Script Libraries
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Performance
is one of the
biggest
pain points
of complex builds.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Should clean be
required for a
reliable build?
(Hint: We have the
21st century)
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Incremental Build
• Parallel Testing
• Soon: Parallel Builds
• Not too distant future: Distributed testing/builds
• Rich Model
17
Speed Improvements
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Gradle is
a
Build
Integration
Tool
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Ant Tasks
• Deep import of Ant builds
• Retrieve/Deploy to Maven/Ivy repositories
• Autogeneration of pom.xml/ivy.xml
• Future: Deep import of Maven builds
19
Build Integration Features
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Mission Critical!
• Very expensive if the build system can’t adapt to the
existing project layout:
– Freeze
– Project automation not working for a while
– Different branches (unreliable, hard to compare, ...)
• Gradle’s suppleness enables baby steps.
– Gradle can adapt to any project layout.
– No separate branches
– Comparable --> You can write tests
20
Build Migration
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Dependency Management
• Transitive Dependencies
• Repository less dependencies are 1st class citizens.
• Excludes per configuration or dependency
• Very flexible repository handling
• Based on Apache Ivy
• Powerful API
• Much More ...
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Deep Integration with
Ant Builds
> gradle hello
Hello, from Gradle...Here comes Ant...
[ant:echo] Hello, from Ant
<project>
<target name="hello" depends="intro">
<echo>Hello, from Ant</echo>
</target>
</project>
ant.importBuild 'build.xml'
hello.doFirst { println 'Here comes Ant' }
task intro << { println 'Hello, from Gradle'}
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Supports Maven/Ant/Gradle with pom or ivy.
• Supports any repository layout
• Very advanced features
• Gradle Artifactory plugin
• Integrated in Gradle Hudson plugin.
• Gradle Inc. has business partnership with JFrog.
23
Build Eco System
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Process is very
important.
But it is all about
YOUR
process
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Their is
no one-size-fits-all
project structure
for the
enterprise.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The physical
structure of your
projects should be
determined by
your
requirements.
(What, if not?)
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Be as
rigid
as
YOU
want
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
FRAME-
WORKITIS
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
34
Fighting with a Framework
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Extensible
Build Language
instead of a
Build Framework
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Gradle Wrapper
>./gradlew assemble
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
• Very active community (mailing-list, patches, issues)
• Apache v2 license.
• Excellent user’s guide (200+ pages) + many samples
• Frequent releases, multiple commits per day
• Quality is king:
– 2800 unit tests, Many hundreds of integration test
– Healthy codebase
– low defect rate
• Commiter -> Steve Appling, Hans Dockter, Tom
Eyckmans, Adam Murdoch, Russel Winder
38
Project Background
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
39
Commercial Support: www.gradle.biz
Monday, October 25, 2010
SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Q&A
Monday, October 25, 2010

More Related Content

PDF
Demystifying Gutenberg Blocks - Understanding the first steps to becoming a G...
PDF
Building your first Gutenberg block
PDF
Create Custom Page Builders with Gutenberg and ACF Blocks
ODP
Oscar reiken jr on our success at manheim
PDF
Scala e xchange 2013 haoyi li on metascala a tiny diy jvm
PPSX
EMBERS soc med4biz (june2010) v.3
PDF
5 things cucumber is bad at by Richard Lawrence
ODP
Patterns for slick database applications
Demystifying Gutenberg Blocks - Understanding the first steps to becoming a G...
Building your first Gutenberg block
Create Custom Page Builders with Gutenberg and ACF Blocks
Oscar reiken jr on our success at manheim
Scala e xchange 2013 haoyi li on metascala a tiny diy jvm
EMBERS soc med4biz (june2010) v.3
5 things cucumber is bad at by Richard Lawrence
Patterns for slick database applications

Similar to Uberconf 10 (20)

PDF
ICONUK 2015 - Gradle Up!
PPTX
Gradle 2.Breaking stereotypes
PPTX
PPTX
Gradle 2.breaking stereotypes.
PPTX
Gradle.Enemy at the gates
PDF
In the Brain of Hans Dockter: Gradle
PDF
Enterprise build tool gradle
PDF
Designing Your Own Domain-Specific Language in Groovy by Guillaume Laforge at...
PPTX
Сергей Моренец: "Gradle. Write once, build everywhere"
PPT
An introduction to maven gradle and sbt
PDF
Why gradle
PDF
Gradle - time for a new build
ODP
Gradle - time for another build
PPTX
Gradle 2.Write once, builde everywhere
PDF
Gradle build automation tool
PPTX
7 maven vsgradle
ODP
Gradle: The Build System you have been waiting for!
PDF
What's new in Gradle 4.0
PPTX
Hands on Gradle
PPTX
Faster java ee builds with gradle [con4921]
ICONUK 2015 - Gradle Up!
Gradle 2.Breaking stereotypes
Gradle 2.breaking stereotypes.
Gradle.Enemy at the gates
In the Brain of Hans Dockter: Gradle
Enterprise build tool gradle
Designing Your Own Domain-Specific Language in Groovy by Guillaume Laforge at...
Сергей Моренец: "Gradle. Write once, build everywhere"
An introduction to maven gradle and sbt
Why gradle
Gradle - time for a new build
Gradle - time for another build
Gradle 2.Write once, builde everywhere
Gradle build automation tool
7 maven vsgradle
Gradle: The Build System you have been waiting for!
What's new in Gradle 4.0
Hands on Gradle
Faster java ee builds with gradle [con4921]
Ad

More from Skills Matter (20)

ODP
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
PDF
Cukeup nyc ian dees on elixir, erlang, and cucumberl
PDF
Cukeup nyc peter bell on getting started with cucumber.js
PDF
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
ODP
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
ODP
Progressive f# tutorials nyc don syme on keynote f# in the open source world
PDF
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
PPTX
Dmitry mozorov on code quotations code as-data for f#
PDF
A poet's guide_to_acceptance_testing
PDF
Russ miles-cloudfoundry-deep-dive
KEY
Serendipity-neo4j
PDF
Simon Peyton Jones: Managing parallelism
PDF
Plug 20110217
PDF
Lug presentation
PPT
I went to_a_communications_workshop_and_they_t
PDF
Plug saiku
PDF
Huguk lily
PDF
Bootstrapping a-devops-matter
PDF
Personal kanban-workshop
PDF
Agilex retrospectives
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Cukeup nyc ian dees on elixir, erlang, and cucumberl
Cukeup nyc peter bell on getting started with cucumber.js
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc don syme on keynote f# in the open source world
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Dmitry mozorov on code quotations code as-data for f#
A poet's guide_to_acceptance_testing
Russ miles-cloudfoundry-deep-dive
Serendipity-neo4j
Simon Peyton Jones: Managing parallelism
Plug 20110217
Lug presentation
I went to_a_communications_workshop_and_they_t
Plug saiku
Huguk lily
Bootstrapping a-devops-matter
Personal kanban-workshop
Agilex retrospectives
Ad

Uberconf 10

  • 2. Gradle A Better Way To Build Monday, October 25, 2010
  • 3. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. 3 About Hans Dockter • Founder, Gradle • CEO, Gradle Inc. • Before Gradle: o Trainer, Mentor, Consultant for Enterprise Java. o Senior Developer for Krugle and Volkswagen. • Prehistoric ;): Committer to JBoss and founder of JBoss-IDE. Monday, October 25, 2010
  • 4. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • A general purpose build system • It comes with a Groovy DSL and a Java core. • Provides build-in support for Java, Groovy, Scala, Web, OSGi projects. • Gradle provides exciting solutions for many of the big pain points you often have with current builds. – Maintainability – Performance – Usability 4 What is Gradle? Monday, October 25, 2010
  • 5. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. What is Gradle? Gradle is declarative You specify the WHAT Gradle figures out the HOW Monday, October 25, 2010
  • 6. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Extensible Build Language instead of a Build Framework Monday, October 25, 2010
  • 7. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Deep Configuration API • Deep Execution API • Rich API • Extendable Domain Objects • Custom Tasks • Custom Plugins 7 Extending Gradle Monday, October 25, 2010
  • 8. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Custom Declarative Elements usePlugin ʻeditionsʼ productEditions { enterprise core, plugins, powerAddons public core, plugins, openApi } > gradle enterpriseEditionZip > gradle publicEditionTar Monday, October 25, 2010
  • 9. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Gradle is declarative without being rigid Monday, October 25, 2010
  • 10. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. The Build Language Source Sets Dependencies Configurations Archives Projects Artifacts Custom Tasks Plugins Monday, October 25, 2010
  • 11. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. XML and the What It does not matter much whether a build system uses XML or Groovy for declaring things. Monday, October 25, 2010
  • 12. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Please no messy build scripts Monday, October 25, 2010
  • 13. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Separate Imperative from Declarative • Custom Tasks/Plugins • BuildSrc • Jar 13 Organizing Build Logic Monday, October 25, 2010
  • 14. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. 14 buildscript { repositories { mavenCentral() } dependencies { classpath 'commons-math:commons-math:1.1' } } task math << { org.apache.commons.math.fraction.Fraction lhs = new org.apache.commons.math.fraction.Fraction(1, 3); // do something } Build Script Libraries Monday, October 25, 2010
  • 15. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Performance is one of the biggest pain points of complex builds. Monday, October 25, 2010
  • 16. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Should clean be required for a reliable build? (Hint: We have the 21st century) Monday, October 25, 2010
  • 17. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Incremental Build • Parallel Testing • Soon: Parallel Builds • Not too distant future: Distributed testing/builds • Rich Model 17 Speed Improvements Monday, October 25, 2010
  • 18. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Gradle is a Build Integration Tool Monday, October 25, 2010
  • 19. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Ant Tasks • Deep import of Ant builds • Retrieve/Deploy to Maven/Ivy repositories • Autogeneration of pom.xml/ivy.xml • Future: Deep import of Maven builds 19 Build Integration Features Monday, October 25, 2010
  • 20. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Mission Critical! • Very expensive if the build system can’t adapt to the existing project layout: – Freeze – Project automation not working for a while – Different branches (unreliable, hard to compare, ...) • Gradle’s suppleness enables baby steps. – Gradle can adapt to any project layout. – No separate branches – Comparable --> You can write tests 20 Build Migration Monday, October 25, 2010
  • 21. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Dependency Management • Transitive Dependencies • Repository less dependencies are 1st class citizens. • Excludes per configuration or dependency • Very flexible repository handling • Based on Apache Ivy • Powerful API • Much More ... Monday, October 25, 2010
  • 22. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Deep Integration with Ant Builds > gradle hello Hello, from Gradle...Here comes Ant... [ant:echo] Hello, from Ant <project> <target name="hello" depends="intro"> <echo>Hello, from Ant</echo> </target> </project> ant.importBuild 'build.xml' hello.doFirst { println 'Here comes Ant' } task intro << { println 'Hello, from Gradle'} Monday, October 25, 2010
  • 23. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Supports Maven/Ant/Gradle with pom or ivy. • Supports any repository layout • Very advanced features • Gradle Artifactory plugin • Integrated in Gradle Hudson plugin. • Gradle Inc. has business partnership with JFrog. 23 Build Eco System Monday, October 25, 2010
  • 24. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Monday, October 25, 2010
  • 25. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Monday, October 25, 2010
  • 26. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Monday, October 25, 2010
  • 27. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Monday, October 25, 2010
  • 28. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Monday, October 25, 2010
  • 29. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Process is very important. But it is all about YOUR process Monday, October 25, 2010
  • 30. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Their is no one-size-fits-all project structure for the enterprise. Monday, October 25, 2010
  • 31. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. The physical structure of your projects should be determined by your requirements. (What, if not?) Monday, October 25, 2010
  • 32. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Be as rigid as YOU want Monday, October 25, 2010
  • 33. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. FRAME- WORKITIS Monday, October 25, 2010
  • 34. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. 34 Fighting with a Framework Monday, October 25, 2010
  • 35. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Monday, October 25, 2010
  • 36. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Extensible Build Language instead of a Build Framework Monday, October 25, 2010
  • 37. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Gradle Wrapper >./gradlew assemble Monday, October 25, 2010
  • 38. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. • Very active community (mailing-list, patches, issues) • Apache v2 license. • Excellent user’s guide (200+ pages) + many samples • Frequent releases, multiple commits per day • Quality is king: – 2800 unit tests, Many hundreds of integration test – Healthy codebase – low defect rate • Commiter -> Steve Appling, Hans Dockter, Tom Eyckmans, Adam Murdoch, Russel Winder 38 Project Background Monday, October 25, 2010
  • 39. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. 39 Commercial Support: www.gradle.biz Monday, October 25, 2010
  • 40. SpringOne 2GX 2009. All rights reserved. Do not distribute without permission. Q&A Monday, October 25, 2010