23 lines
464 B
Groovy
23 lines
464 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group 'de.vanitasvitae'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
// Apache Repository for Commons CLI
|
||
|
maven { url "https://repository.apache.org/content/groups/snapshots/" }
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// Apache Commons CLI for parsing command line arguments
|
||
|
compile 'commons-cli:commons-cli:1.5-SNAPSHOT'
|
||
|
|
||
|
|
||
|
// Testing
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
}
|