2018-11-14 20:38:51 +01:00
|
|
|
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
|
2018-11-15 22:37:19 +01:00
|
|
|
implementation 'commons-cli:commons-cli:1.5-SNAPSHOT'
|
2018-11-14 20:38:51 +01:00
|
|
|
|
|
|
|
// Testing
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|