* Gradle tutorial project : 1. A multi-project build 2. Inclusive all required tasks and dependency example. * Gradle tutorial is shifted to gradle folder
10 lines
202 B
Groovy
10 lines
202 B
Groovy
apply plugin :'java'
|
|
//apply plugin : 'application'
|
|
|
|
|
|
|
|
dependencies{
|
|
compile group: 'joda-time', name: 'joda-time', version: '2.9.9'
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|