Why does it break

This commit is contained in:
obvWolf
2024-02-15 07:23:23 -06:00
parent 420d5a1866
commit 8031a501c6
13 changed files with 23 additions and 362 deletions

View File

@@ -52,6 +52,13 @@ tasks.withType(JavaCompile).configureEach {
}
}
tasks.register('copyDeps', Copy) {
from configurations.runtimeClasspath
into 'build/deps'
include '*.jar'
}
processResources {
def props = [version: version]
inputs.properties props
@@ -65,4 +72,4 @@ compileJava.options.encoding("UTF-8")
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}