Skip to content

Commit 1605eeb

Browse files
committed
Update tool versions
1 parent 355b75e commit 1605eeb

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

buildSrc/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2020

2121
plugins {
2222
`kotlin-dsl`
23-
id("com.github.ben-manes.versions") version "0.25.0"
23+
id("com.github.ben-manes.versions") version "0.27.0"
2424
}
2525

2626
buildscript {
@@ -43,7 +43,7 @@ repositories {
4343
}
4444

4545
dependencies {
46-
implementation(gradlePlugin("com.github.ben-manes.versions:0.25.0"))
46+
implementation(gradlePlugin("com.github.ben-manes.versions:0.27.0"))
4747
implementation(gradlePlugin("org.ajoberstar.grgit:3.1.1"))
4848
implementation(gradlePlugin("com.github.spotbugs:2.0.0"))
4949
implementation(gradlePlugin("biz.aQute.bnd.builder:4.2.0"))
@@ -53,7 +53,7 @@ dependencies {
5353
implementation(gradlePlugin("net.wooga.github:1.4.0"))
5454
implementation(gradlePlugin("info.solidsoft.pitest:1.4.5"))
5555
implementation("com.fasterxml.jackson.core:jackson-databind:2.10.0")
56-
implementation("com.github.javaparser:javaparser-core:3.14.159265359")
56+
implementation("com.github.javaparser:javaparser-core:3.15.1")
5757
implementation("org.kohsuke:github-api:1.95")
5858
implementation("net.sf.saxon:Saxon-HE:9.9.1-5")
5959
implementation("org.pitest:pitest:1.4.10")
@@ -71,6 +71,7 @@ tasks.withType<KotlinCompile>().configureEach {
7171

7272
tasks.dependencyUpdates {
7373
checkForGradleUpdate = false
74+
checkConstraints = true
7475

7576
rejectVersionIf {
7677
val preliminaryReleaseRegex = Regex("""(?i)[.-](?:${listOf(

buildSrc/src/main/kotlin/net/kautler/tests.gradle.kts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,6 @@ dependencies {
6060

6161
"spockCompileOnly"("org.codehaus.groovy:groovy:${versions["groovy"]}")
6262
"spockCompileOnly"("org.spockframework:spock-core:${versions["spock"]}")
63-
64-
constraints {
65-
testImplementation( "org.jboss.weld.se:weld-se-core:${versions["weld-se"]}") {
66-
because("work-around for https://github.com/weld/weld-junit/issues/80")
67-
}
68-
}
6963
}
7064

7165
jacoco {

buildSrc/src/main/kotlin/net/kautler/versions.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ val versions by extra(mapOf(
4949
// tool versions
5050
"codenarc" to "1.4",
5151
"findsecbugs" to "1.9.0",
52-
"jacoco" to "0.8.4",
52+
"jacoco" to "0.8.5",
5353
"pitest" to "1.4.10",
5454
"pmd" to "6.18.0",
5555
"sb-contrib" to "7.4.6",
@@ -61,9 +61,8 @@ val versions by extra(mapOf(
6161
"groovy" to "2.5.8",
6262
"spock-global-unroll" to "0.5.1",
6363
"byte-buddy" to "1.10.1",
64-
"objenesis" to "3.0.1",
65-
"weld-junit" to "2.0.0.Final",
66-
"weld-se" to "3.1.2.Final"
64+
"objenesis" to "3.1",
65+
"weld-junit" to "2.0.1.Final"
6766
))
6867

6968
configurations.register("tools")
@@ -123,6 +122,7 @@ tasks.processResources {
123122

124123
tasks.dependencyUpdates {
125124
gradleReleaseChannel = CURRENT.id
125+
checkConstraints = true
126126

127127
rejectVersionIf {
128128
val preliminaryReleaseRegex = Regex("""(?i)[.-](?:${listOf(

0 commit comments

Comments
 (0)