master
getcom 2021-10-18 19:17:03 +02:00
parent d04a1e146e
commit b016db5eeb
10 changed files with 8 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -10,6 +10,7 @@ repositories {
}
dependencies {
implementation 'org.yaml:snakeyaml:1.29'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
@ -21,4 +22,10 @@ jar {
'Main-Class': 'de.vincentschweiger.calltoj.CallToJ'
)
}
}
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}