Skip to content

Commit 89563b5

Browse files
committed
build clean up
1 parent 423da68 commit 89563b5

File tree

3 files changed

+1
-19
lines changed

3 files changed

+1
-19
lines changed

buildSrc/src/main/kotlin/openapiprocessor.library.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ tasks.withType<Test>().configureEach {
6060

6161
tasks.withType<DependencyUpdatesTask> {
6262
rejectVersionIf {
63-
println("candidate: $candidate stable: ${!candidate.version.isNonStable()}")
63+
//println("candidate: $candidate stable: ${!candidate.version.isNonStable()}")
6464
candidate.version.isNonStable()
6565
}
6666

@@ -87,7 +87,6 @@ fun String.isNonStable(): Boolean {
8787

8888
for (n in nonStable) {
8989
if (this.contains("(?i)$n".toRegex())) {
90-
//println("not stable: $this")
9190
return true
9291
}
9392
}

buildSrc/src/main/kotlin/openapiprocessor.test.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ import org.gradle.accessors.dm.LibrariesForLibs
44

55
plugins {
66
java
7-
// jacoco
87
groovy
98
kotlin
10-
// id("org.barfuin.gradle.jacocolog")
119
}
1210

1311
// see buildSrc/build.gradle.kts

buildSrc/src/main/kotlin/openapiprocessor.testInt.gradle.kts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import org.gradle.accessors.dm.LibrariesForLibs
44

55
plugins {
66
java
7-
// jacoco
87
kotlin
9-
// id("org.barfuin.gradle.jacocolog")
108
}
119

1210
// see buildSrc/build.gradle.kts
@@ -43,16 +41,3 @@ testing {
4341
tasks.named("check") {
4442
dependsOn(testing.suites.named("testInt"))
4543
}
46-
//
47-
//jacoco {
48-
// toolVersion = libs.versions.jacoco.get()
49-
//}
50-
//
51-
//tasks.named<JacocoReport>("jacocoTestReport") {
52-
// reports {
53-
// xml.required.set(true)
54-
// csv.required.set(false)
55-
// html.required.set(false)
56-
// //html.outputLocation.set(layout.buildDirectory.dir("jacocoHtml"))
57-
// }
58-
//}

0 commit comments

Comments
 (0)