Skip to content

Instantly share code, notes, and snippets.

@pavan538
Created April 20, 2018 10:21
Show Gist options
  • Save pavan538/947c89d56715147af19a3011c7dbf799 to your computer and use it in GitHub Desktop.
Save pavan538/947c89d56715147af19a3011c7dbf799 to your computer and use it in GitHub Desktop.
apply from: 'plugins.gradle'
ext {
dependencies_version = [
dropwizard: [
core: '1.3.1'
]
]
}
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/io.dropwizard/dropwizard-core
compile group: 'io.dropwizard', name: 'dropwizard-core', version: rootProject.ext.dependencies_version.dropwizard.core
testCompile group: 'junit', name: 'junit', version: '4.12'
}
task simple_task {
println "Hello blood_bank_api"
}
play {
features {
featureName = "playing feature"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment