Skip to content

Commit

Permalink
Bump JDK to 17.0.14+7 (#2133)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 authored Jan 26, 2025
1 parent 280fdcd commit 96d06ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions changes/2133.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Java JDK 17.0.14+7 is now used to package Android apps. Use ``briefcase upgrade java`` to update your Briefcase-installed JDK instance to this version.
4 changes: 2 additions & 2 deletions src/briefcase/integrations/java.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class JDK(ManagedTool):
name = "java"
full_name = "Java JDK"

# Latest OpenJDK as of July 2024: https://adoptium.net/temurin/releases/
# Latest OpenJDK as of January 2025: https://adoptium.net/temurin/releases/
JDK_MAJOR_VER = "17"
JDK_RELEASE = "17.0.12"
JDK_RELEASE = "17.0.14"
JDK_BUILD = "7"
JDK_INSTALL_DIR_NAME = f"java{JDK_MAJOR_VER}"

Expand Down
2 changes: 1 addition & 1 deletion tests/integrations/java/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from briefcase.integrations.file import File
from briefcase.integrations.subprocess import Subprocess

JDK_RELEASE = "17.0.12"
JDK_RELEASE = "17.0.14"
JDK_BUILD = "7"


Expand Down

0 comments on commit 96d06ba

Please sign in to comment.