Skip to content

Commit c8806cd

Browse files
authored
upgrade gradle version to 8.8 (#4)
1 parent 64eb5ab commit c8806cd

File tree

7 files changed

+58
-36
lines changed

7 files changed

+58
-36
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
java: ['11', '17']
13+
java: ['11', '17', '21']
1414

1515
runs-on: ubuntu-latest
1616

build.gradle.kts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@ plugins {
22
`java-gradle-plugin`
33
`kotlin-dsl`
44
`maven-publish`
5-
id("com.gradle.plugin-publish") version "1.2.0"
5+
id("com.gradle.plugin-publish") version "1.2.1"
66
}
77

88
repositories {
99
mavenCentral()
1010
}
1111

1212
dependencies {
13-
testImplementation(platform("org.junit:junit-bom:5.9.2"))
13+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
14+
testImplementation(platform("org.junit:junit-bom:5.10.2"))
1415
testImplementation("org.junit.jupiter:junit-jupiter")
1516
testImplementation("org.junit.jupiter:junit-jupiter-params")
16-
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.2")
17-
testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2")
17+
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.1")
18+
testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.17.1")
1819
}
1920

2021
gradlePlugin {

gradle/wrapper/gradle-wrapper.jar

-16 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

gradlew

Lines changed: 28 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 19 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/test/kotlin/dev/poolside/gradle/semanticversion/SemanticVersionPluginTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ class SemanticVersionPluginTest {
2828
Arguments.of("7.4.2"),
2929
Arguments.of("7.5.1"),
3030
Arguments.of("7.6.1"),
31-
Arguments.of("8.1")
31+
Arguments.of("8.1"),
32+
Arguments.of("8.8")
3233
)
3334
}
3435

0 commit comments

Comments
 (0)