Gradle: The Build System you have been waiting for!

Embed Size (px)

Citation preview

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 $@ $