Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade gradle 8.10.2 and JDK 23 #1428

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test_build_multi_platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
needs: spotless
strategy:
matrix:
java: [ 21 ]
java: [21, 23]
name: Build and Test Anomaly Detection Plugin on Windows
runs-on: windows-latest
env:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
needs: [Get-CI-Image-Tag, spotless]
strategy:
matrix:
java: [21]
java: [21, 23]
fail-fast: false
name: Build and Test Anomaly detection Plugin on Linux
runs-on: ubuntu-latest
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
needs: spotless
strategy:
matrix:
java: [21]
java: [21, 23]
fail-fast: false

name: Build and Test Anomaly detection Plugin on MacOS
Expand Down
2 changes: 1 addition & 1 deletion build-tools/coverage.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
apply plugin: 'jacoco'

jacoco {
toolVersion = "0.8.10"
toolVersion = "0.8.12"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ buildscript {
}

plugins {
id 'com.netflix.nebula.ospackage' version "11.5.0"
id 'com.netflix.nebula.ospackage' version "11.10.0"
id "com.diffplug.spotless" version "6.25.0"
id 'java-library'
id 'org.gradle.test-retry' version '1.6.0'
Expand Down
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionSha256Sum=2ab88d6de2c23e6adae7363ae6e29cbdd2a709e992929b48b6530fd0c7133bd6
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading