gradle: the build system you have been waiting for!

Download Gradle: The Build System you have been waiting for!

If you can't read please download the document

Upload: corneil-du-plessis

Post on 15-Apr-2017

535 views

Category:

Software


0 download

TRANSCRIPT

PowerPoint Presentation

Corneil du PlessisGradle: The Build system you have been waiting for!DevOps & Automation

Gradle: IntroductionScope

History Lesson

Make

Ant

Maven

GradleWhat is it?

Is Groovy

Artefacts

Builtin Support

Case studies

Gradle: MakeTargets, dependencies, rules

Sample:CFLAGS ?= -g
all: helloworld

helloworld: helloworld.o
# Commands start with TAB not spaces
$(CC) $(LDFLAGS) -o $@ $^

helloworld.o: helloworld.c
$(CC) $(CFLAGS) -c -o $@ $