Add command line option parsing

This commit is contained in:
Paul Schaub 2018-11-14 20:38:51 +01:00
parent 8420a54c97
commit e91fed4459
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
11 changed files with 501 additions and 0 deletions

23
build.gradle Normal file
View file

@ -0,0 +1,23 @@
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'
}