Add command line option parsing
This commit is contained in:
parent
8420a54c97
commit
e91fed4459
11 changed files with 501 additions and 0 deletions
23
build.gradle
Normal file
23
build.gradle
Normal 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'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue