Created
November 10, 2014 15:07
-
-
Save danhyun/95619b1487363df9ee5f to your computer and use it in GitHub Desktop.
Standard bootstrap Gradle build file
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 plugin: 'java' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
compile 'org.slf4j:slf4j-api:1.7.5' | |
// other dependencies go here in Maven style Group:Artifact:Version format | |
testCompile 'junit:junit:4.11' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment