Added more verbose + statistics

This commit is contained in:
obvWolf
2023-11-02 14:48:17 -05:00
parent c8115fffa5
commit 078baefbf6
6 changed files with 109 additions and 21 deletions

View File

@@ -3,7 +3,7 @@ plugins {
}
group 'me.trouper'
version '1.0-SNAPSHOT'
version '0.0.1'
repositories {
mavenCentral()
@@ -23,4 +23,9 @@ jar {
manifest {
attributes 'Main-Class': 'me.trouper.Main'
}
from {
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}
}