java-tutorials/gradle/build.gradle
abirkhan04 9caf73c18e Gradle tutorial project : (#2922)
* Gradle tutorial project :
1. A multi-project build
2. Inclusive all required tasks and dependency example.

* Gradle tutorial is shifted to gradle folder
2017-11-22 20:19:42 +01:00

36 lines
677 B
Groovy

allprojects {
repositories {
jcenter()
}
}
subprojects {
version = '1.0'
}
apply plugin: 'eclipse'
println 'This will be executed during the configuration phase.'
task configured {
println 'This will also be executed during the configuration phase.'
}
task execFirstTest {
doLast {
println 'This will be executed during the execution phase.'
}
}
task execSecondTest {
doFirst {
println 'This will be executed first during the execution phase.'
}
doLast {
println 'This will be executed last during the execution phase.'
}
println 'This will be executed during the configuration phase as well.'
}