Skip to content

Commit 2ce61cf

Browse files
authored
Java 25 update and other deps (Gradle, ...) (#1346)
* Java 25 update and other deps (Gradle, ...) * java 25 in wiki
1 parent 7b5d29e commit 2ce61cf

File tree

17 files changed

+24
-26
lines changed

17 files changed

+24
-26
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"features": {
1010
"ghcr.io/devcontainers/features/java:1": {
11-
"version": "24-tem",
11+
"version": "25-tem",
1212
"jdkDistro": "tem",
1313
"installGradle": true
1414
},

.github/workflows/basic-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Basic checks
33
on: [pull_request]
44

55
env:
6-
JAVA_VERSION: 24
6+
JAVA_VERSION: 25
77

88
jobs:
99
spotless:

.github/workflows/code-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- cron: '0 20 * * 4'
99

1010
env:
11-
JAVA_VERSION: 24
11+
JAVA_VERSION: 25
1212

1313
jobs:
1414
sonar:

.github/workflows/docker-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'master'
88

99
env:
10-
JAVA_VERSION: 24
10+
JAVA_VERSION: 25
1111

1212
jobs:
1313
docker:

.github/workflows/docker-verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Docker Verify
33
on: [pull_request]
44

55
env:
6-
JAVA_VERSION: 24
6+
JAVA_VERSION: 25
77

88
jobs:
99
docker:

.github/workflows/releases.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010
shell: bash
1111

1212
env:
13-
JAVA_VERSION: 24
13+
JAVA_VERSION: 25
1414

1515
jobs:
1616

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
//Configure the JDK to Java 18 in settings
2+
//Configure the JDK to Java 25 in settings
33
"java.compile.nullAnalysis.mode": "disabled",
44
"java.format.settings.url": "meta/formatting/google-style-eclipse.xml",
55
"editor.formatOnSave": true,
66
"editor.formatOnPaste": true,
77
"java.format.enabled": true,
8-
}
8+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TJ-Bot
22

33
[![codefactor](https://img.shields.io/codefactor/grade/github/together-java/tj-bot)](https://www.codefactor.io/repository/github/together-java/tj-bot)
4-
![Java](https://img.shields.io/badge/Java-24-ff696c)
4+
![Java](https://img.shields.io/badge/Java-25-ff696c)
55
[![license](https://img.shields.io/github/license/Together-Java/TJ-Bot)](https://github.com/Together-Java/TJ-Bot/blob/master/LICENSE)
66
![GitHub release (latest by date)](https://img.shields.io/github/v/release/Together-Java/TJ-Bot?label=release)
77

application/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
plugins {
88
id 'application'
99
id 'com.google.cloud.tools.jib' version '3.5.0'
10-
id 'com.github.johnrengelman.shadow' version '8.1.1'
10+
id 'com.gradleup.shadow' version '9.2.2'
1111
id 'database-settings'
1212
}
1313

@@ -18,7 +18,7 @@ repositories {
1818
var outputImage = 'togetherjava.org:5001/togetherjava/tjbot:' + System.getenv('BRANCH_NAME') ?: 'latest'
1919

2020
jib {
21-
from.image = 'eclipse-temurin:24'
21+
from.image = 'eclipse-temurin:25'
2222
to {
2323
image = outputImage
2424
auth {

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
3-
id "com.diffplug.spotless" version "7.2.0"
4-
id "org.sonarqube" version "7.0.0.6105"
3+
id "com.diffplug.spotless" version "8.0.0"
4+
id "org.sonarqube" version "7.0.1.6134"
55
id "name.remal.sonarlint" version "6.0.0"
66
}
77
repositories {
@@ -35,7 +35,9 @@ sonarqube {
3535
tasks.register('installLocalGitHook', Copy) {
3636
from new File(rootProject.rootDir, 'scripts/pre-commit')
3737
into new File(rootProject.rootDir, '.git/hooks')
38-
fileMode 0775
38+
filePermissions {
39+
unix("rwxrwxr-x")
40+
}
3941
}
4042
build.dependsOn installLocalGitHook
4143

@@ -59,7 +61,7 @@ subprojects {
5961
java {
6062
toolchain {
6163
// Nails the Java-Version of every Subproject
62-
languageVersion = JavaLanguageVersion.of(24)
64+
languageVersion = JavaLanguageVersion.of(25)
6365
}
6466
}
6567

0 commit comments

Comments
 (0)