Created
November 23, 2016 13:30
-
-
Save potfur/22a4296851bdf76cd612505bf99aefba to your computer and use it in GitHub Desktop.
build.gradle template
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
group 'group name' | |
version '0.0.0' | |
apply plugin: 'java' | |
apply plugin: 'idea' | |
apply plugin: 'application' | |
sourceCompatibility = 1.8 | |
mainClassName = "Main" | |
repositories { | |
flatDir { | |
dirs 'lib' | |
} | |
mavenCentral() | |
jcenter() | |
} | |
dependencies { | |
testCompile 'junit:junit:4.+' | |
testCompile 'org.mockito:mockito-core:1.+' | |
} | |
task update(type: Copy) { | |
from configurations.runtime | |
into 'runtime/' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment