Created
April 20, 2018 10:21
-
-
Save pavan538/947c89d56715147af19a3011c7dbf799 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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