Skip to content
Snippets Groups Projects
Verified Commit ea08e947 authored by Ira ¯\_(ツ)_/¯'s avatar Ira ¯\_(ツ)_/¯
Browse files

Update build file with some extra helper actions

parent 9128d2ff
No related branches found
No related tags found
No related merge requests found
......@@ -78,8 +78,22 @@ tasks.named<Test>("integrationTest") {
useJUnit()
}
tasks.register<Copy>("copyJar") {
tasks.register<Copy>("copyDevJar") {
from(tasks.jar.get().outputs)
into("./docker")
}
tasks.register<Copy>("copyTestJar") {
from(tasks.jar.get().outputs)
into("./src/integrationTest/resources/docker")
}
tasks.register("updateJar") {
dependsOn("copyDevJar")
dependsOn("copyTestJar")
}
tasks.register("format") {
dependsOn("ktlintFormat")
dependsOn("googleJavaFormat")
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment