Added examples

This commit is contained in:
Erik C. Thauvin 2021-05-08 15:50:33 -07:00
parent 8cb6ac4c0b
commit 3517acf544
10 changed files with 139 additions and 33 deletions

View file

@ -102,24 +102,6 @@ tasks {
}
}
val copyToDeploy by registering(Copy::class) {
from(configurations.runtimeClasspath) {
exclude("annotations-*.jar")
}
from(jar)
into(deployDir)
}
register("deploy") {
description = "Copies all needed files to the $deployDir directory."
group = PublishingPlugin.PUBLISH_TASK_GROUP
dependsOn("build", "jar")
outputs.dir(deployDir)
inputs.files(copyToDeploy)
mustRunAfter("clean")
}
"sonarqube" {
dependsOn("jacocoTestReport")
}