Skip to content

Commit

Permalink
Update OpenJDK default versions for 8, 11, 13, 15 (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
doriskwan authored Oct 19, 2021
1 parent 4deeca3 commit 3835e19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions buildpacks/jvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
* Default version for **OpenJDK 8** is now `1.8.0_312`
* Default version for **OpenJDK 11** is now `11.0.13`
* Default version for **OpenJDK 13** is now `13.0.9`
* Default version for **OpenJDK 15** is now `15.0.5`

## [0.1.8] 2021/09/15
### Added
Expand Down
8 changes: 4 additions & 4 deletions buildpacks/jvm/lib/jvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ DEFAULT_JDK_VERSION="1.8"
# shellcheck disable=SC2034
DEFAULT_JDK_1_7_VERSION="1.7.0_312"
# shellcheck disable=SC2034
DEFAULT_JDK_1_8_VERSION="1.8.0_302"
DEFAULT_JDK_1_8_VERSION="1.8.0_312"
# shellcheck disable=SC2034
DEFAULT_JDK_1_9_VERSION="9.0.4"
DEFAULT_JDK_10_VERSION="10.0.2"
DEFAULT_JDK_11_VERSION="11.0.12"
DEFAULT_JDK_11_VERSION="11.0.13"
DEFAULT_JDK_12_VERSION="12.0.2"
DEFAULT_JDK_13_VERSION="13.0.8"
DEFAULT_JDK_13_VERSION="13.0.9"
DEFAULT_JDK_14_VERSION="14.0.2"
DEFAULT_JDK_15_VERSION="15.0.4"
DEFAULT_JDK_15_VERSION="15.0.5"
DEFAULT_JDK_16_VERSION="16.0.2"
DEFAULT_JDK_17_VERSION="17.0.0"

Expand Down

0 comments on commit 3835e19

Please sign in to comment.