* Gradle tutorial project : 1. A multi-project build 2. Inclusive all required tasks and dependency example. * Gradle tutorial is shifted to gradle folder
11 lines
207 B
Groovy
11 lines
207 B
Groovy
rootProject.name = 'gradletutorial'
|
|
|
|
|
|
include 'greeting-library'
|
|
include 'greeting-library-java'
|
|
include 'greeter'
|
|
include 'gradletaskdemo'
|
|
|
|
|
|
println 'This will be executed during the initialization phase.'
|