We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0db564d commit c3139d2Copy full SHA for c3139d2
build.gradle.kts
@@ -2,7 +2,6 @@ import com.diffplug.spotless.LineEnding
2
3
plugins {
4
id("java-library")
5
- id("jacoco")
6
id("maven-publish")
7
id("signing")
8
id("com.diffplug.spotless").version("8.0.0")
@@ -146,9 +145,3 @@ tasks.withType<Javadoc>().configureEach {
146
145
tasks.withType<Test>().configureEach {
147
useJUnitPlatform()
148
}
149
-tasks.test {
150
- finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
151
-}
152
-tasks.jacocoTestReport {
153
- dependsOn(tasks.test) // tests are required to run before generating the report
154
0 commit comments