Skip to content

Commit 8835754

Browse files
committed
java 25 start
1 parent 6165b71 commit 8835754

9 files changed

Lines changed: 16 additions & 14 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pipeline {
22
agent any
33
tools {
4-
jdk "jdk8u292-b10"
4+
jdk "jdk-25"
55
}
66

77
stages {

ScriptingEngineTester/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ configurations {
1010

1111
dependencies {
1212
api project(':Shared')
13+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1314
implementation libs.jupiter.api
1415
implementation libs.junit.platform.engine
15-
testRuntimeOnly libs.jupiter.engine
16+
testRuntimeOnly libs.jupiter.engine
1617

1718
stdLibs project(path: ":StdLibs", configuration: "zip")
1819
}

ScriptingExample/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ configurations {
1414

1515
dependencies {
1616
api project(':JavaIntegration')
17+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1718
testImplementation project(':ScriptingEngineTester')
1819
testImplementation libs.jupiter
1920
testRuntimeOnly libs.jupiter

buildSrc/src/main/groovy/zencode-common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repositories {
1818
}
1919

2020
java {
21-
toolchain.languageVersion = JavaLanguageVersion.of(8)
21+
toolchain.languageVersion = JavaLanguageVersion.of(25)
2222
withSourcesJar()
2323
withJavadocJar()
2424
}

gradle/wrapper/gradle-wrapper.jar

2.13 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

gradlew.bat

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

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
2+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
33
}
44

55
rootProject.name = 'ZenCode'

0 commit comments

Comments
 (0)