Skip to content

Commit 0ff833d

Browse files
committed
Move java21 over so we can add java17 for debian13
Signed-off-by: Appu Goundan <appu@google.com>
1 parent af7e4bb commit 0ff833d

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ busybox.archive()
5454
use_repo(busybox, "busybox_amd64", "busybox_arm", "busybox_arm64", "busybox_ppc64le", "busybox_s390x")
5555

5656
### JAVA ###
57-
include("//private/repos:java.MODULE.bazel")
57+
include("//private/repos/java_temurin:java_21.MODULE.bazel")
5858

5959
### NODE ###
6060
node = use_extension("//private/extensions:node.bzl", "node")

knife

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ function cmd_lint () {
138138
function cmd_update_java_archives () {
139139
source scripts/update_java_archives.sh
140140
old_version=$(get_java_version)
141-
generate_java_archives > private/repos/java.MODULE.bazel
141+
generate_java_archives > private/repos/java_temurin/java_21.MODULE.bazel
142142
new_version=$(get_java_version)
143143
update_test_versions_java21 $old_version $new_version
144144
}
File renamed without changes.

scripts/update_java_archives.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ set -o pipefail -o errexit -o nounset
1717
# a collection of functions to use when updating java archives from the knife utility
1818

1919
function get_java_version() {
20-
grep "#VERSION " ./private/repos/java.MODULE.bazel | cut -d" " -f2
20+
grep "#VERSION " ./private/repos/java_temurin/java_21.MODULE.bazel | cut -d" " -f2
2121
}
2222

2323
function underscore_encode() {

0 commit comments

Comments
 (0)