IMI-Application/build.gradle

25 lines
541 B
Groovy
Raw Permalink Normal View History

2018-11-14 20:38:51 +01:00
plugins {
id 'java'
2018-11-17 15:39:58 +01:00
id 'application'
2018-11-14 20:38:51 +01:00
}
group 'de.vanitasvitae'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
2018-11-17 15:39:58 +01:00
mainClassName = "de.vanitasvitae.imi.codes.Main"
2018-11-14 20:38:51 +01:00
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'
2018-11-17 15:39:58 +01:00
}