File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,9 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
22import org.gradle.api.tasks.testing.logging.TestLogEvent
33
44plugins {
5- checkstyle
65 application
6+ checkstyle
7+ jacoco
78 id(" org.sonarqube" ) version " 6.2.0.5505"
89 id(" org.springframework.boot" ) version " 3.5.0"
910 id(" io.spring.dependency-management" ) version " 1.1.7"
@@ -28,7 +29,6 @@ repositories {
2829
2930dependencies {
3031 implementation(" org.springframework.boot:spring-boot-starter" )
31- implementation(" org.springframework.boot:spring-boot-starter-web" )
3232 implementation(" org.springframework.boot:spring-boot-devtools" )
3333 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
3434 testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
@@ -47,6 +47,12 @@ tasks.test {
4747 }
4848}
4949
50+ tasks.jacocoTestReport {
51+ reports {
52+ xml.required.set(true )
53+ }
54+ }
55+
5056sonar {
5157 properties {
5258 property(" sonar.projectKey" , " sergeycherkasovv_java-project-99" )
You can’t perform that action at this time.
0 commit comments