2019-10-31 20:43:47 -05:00
|
|
|
repositories{
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
apply plugin: 'maven'
|
|
|
|
|
apply plugin: com.baeldung.GreetingPlugin
|
|
|
|
|
dependencies {
|
|
|
|
|
compile gradleApi()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
greeting {
|
|
|
|
|
greeter = "Stranger"
|
|
|
|
|
message = "Message from the build script!"
|
|
|
|
|
}
|