Skip to content

Instantly share code, notes, and snippets.

@karol-lotkowski
Created October 13, 2015 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karol-lotkowski/2697cc85e1496af89f17 to your computer and use it in GitHub Desktop.
Save karol-lotkowski/2697cc85e1496af89f17 to your computer and use it in GitHub Desktop.
Dropwizard added to the project as a compile dependency
apply plugin: 'java'
sourceCompatibility = 1.8
project.ext {
dropwizardVersion = '0.8.2'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'io.dropwizard', name: 'dropwizard-core', version: dropwizardVersion
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment