22 lines
No EOL
470 B
Groovy
22 lines
No EOL
470 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
|
|
implementation 'commons-cli:commons-cli:1.5-SNAPSHOT'
|
|
|
|
// Testing
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
} |