Skip to content

Commit

Permalink
maven: add openjdk-21 (#2017)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Hall <[email protected]>
  • Loading branch information
imjasonh authored Dec 31, 2023
1 parent 6d469da commit 1121483
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion images/maven/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
}

locals {
jdks = toset(["11", "17"])
jdks = toset(["11", "17", "21"])
}

variable "target_repository" {
Expand Down Expand Up @@ -46,6 +46,10 @@ module "tagger" {
"openjdk-17" : module.maven["17"].image_ref
"openjdk-17-dev" : module.maven["17"].dev_ref

"openjdk-21" : module.maven["21"].image_ref
"openjdk-21-dev" : module.maven["21"].dev_ref

# TODO: Update these to point to openjdk-21
"latest" : module.maven["17"].image_ref
"latest-dev" : module.maven["17"].dev_ref
}
Expand Down

0 comments on commit 1121483

Please sign in to comment.