Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: 'liberica'
java-version: '21'
java-version: '25'
cache: 'gradle'
if: ${{ matrix.language == 'java' }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: 'liberica'
java-version: '21'
java-version: '25'
cache: 'gradle'
- name: Login to Docker Hub
uses: docker/login-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '21', '25' ]
java: [ '25' ]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-java@v5
with:
distribution: 'liberica'
java-version: '21'
java-version: '25'
cache: 'gradle'
- name: Analyze with SonarCloud
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Security OAuth that can do the heavy lifting if your client is Java.
## Quick Start

Requirements:
* Java 21 or 25
* Java 25

If this works, you are in business:

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ subprojects {

apply(plugin: "java")
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_25
targetCompatibility = JavaVersion.VERSION_25
}

configurations.configureEach {
Expand Down
2 changes: 1 addition & 1 deletion uaa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ tasks.named('bootBuildImage') {
// use JRE since JDK gets too big
environment.putAll([
'BP_SPRING_CLOUD_BINDINGS_DISABLED': 'true',
'BP_JVM_VERSION' : '21',
'BP_JVM_VERSION' : '25',
'BP_JVM_TYPE' : System.getenv('BP_JVM_TYPE') ?: project.findProperty('BP_JVM_TYPE') ?: 'JRE',
'BP_JVM_PLATFORM' : 'liberica'
])
Expand Down
Loading