Skip to content

Commit 2378047

Browse files
authored
Bump JDK from 17.0.14+7 to 17.0.15+6 (#2259)
1 parent c0bceb7 commit 2378047

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

changes/2259.removal.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Java JDK 17.0.15+6 is now used to package Android apps. Use ``briefcase upgrade java`` to update your Briefcase-installed JDK instance to this version.

src/briefcase/integrations/java.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ class JDK(ManagedTool):
1919

2020
# Latest OpenJDK as of January 2025: https://adoptium.net/temurin/releases/
2121
JDK_MAJOR_VER = "17"
22-
JDK_RELEASE = "17.0.14"
23-
JDK_BUILD = "7"
22+
JDK_RELEASE = "17.0.15"
23+
JDK_BUILD = "6"
2424
JDK_INSTALL_DIR_NAME = f"java{JDK_MAJOR_VER}"
2525

2626
def __init__(self, tools: ToolCache, java_home: Path):

tests/integrations/java/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from briefcase.integrations.file import File
77
from briefcase.integrations.subprocess import Subprocess
88

9-
JDK_RELEASE = "17.0.14"
10-
JDK_BUILD = "7"
9+
JDK_RELEASE = "17.0.15"
10+
JDK_BUILD = "6"
1111

1212

1313
@pytest.fixture

0 commit comments

Comments
 (0)