|
@@ -56,4 +56,13 @@ tasks.named('test') {
|
|
useJUnitPlatform()
|
|
useJUnitPlatform()
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+task clearLibs(type: Delete) {
|
|
|
|
+ delete("${buildDir}/output/")
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+task copyRuntimeLibs(type: Copy) {
|
|
|
|
+ into "${buildDir}/output/libs"
|
|
|
|
+ from configurations.compileClasspath
|
|
|
|
+}
|
|
|
|
|
|
|
|
+jar.dependsOn(clearLibs,copyRuntimeLibs)
|