added cli tool

This commit is contained in:
2020-04-27 19:41:06 +01:00
parent 0479cf0560
commit 9f48d6ee3a
9 changed files with 256 additions and 11 deletions

View File

@@ -5,10 +5,18 @@ plugins {
group = "net.woggioni"
version = "0.1"
repositories {
mavenLocal()
jcenter()
mavenCentral()
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
allprojects {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
}
fun property(name : String) = project.property(name).toString()