Skip to content

Commit

Permalink
P4PADEV-229 updated gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe-LaManna committed May 9, 2024
1 parent d01b556 commit 061e8af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
java
id("org.springframework.boot") version "3.2.5"
id("io.spring.dependency-management") version "1.1.4"
id("jacoco")
jacoco
id("org.sonarqube") version "5.0.0.4638"
id("com.github.ben-manes.versions") version "0.51.0"
}
Expand Down Expand Up @@ -47,6 +47,11 @@ dependencies {

tasks.withType<Test> {
useJUnitPlatform()
finalizedBy(tasks.jacocoTestReport)
}

tasks.jacocoTestReport {
dependsOn(tasks.test)
}

val projectInfo = mapOf(
Expand Down

0 comments on commit 061e8af

Please sign in to comment.