rocketraman
CreateStartScripts
tasks.getByName("jar").outputs.files + configurations.getByName("runtimeClasspath")
classpath = tasks.getByName("jar").outputs.files + tasks.getByName("jvmJar").outputs.files + configurations.getByName("jvmRuntimeClasspath")
build/libs
val backendJar by tasks.existing val backendRuntimeClasspath by configurations.existing classpath = files(backendJar, backendRuntimeClasspath)
A modern programming language that makes developers happier.