Skip to content

Commit 0664468

Browse files
committed
Updated to Oracle JDK 1.8.0_65.
1 parent b6fc3f0 commit 0664468

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Heroku buildpack: Oracle JDK
22
============================
33

44
This is a Heroku buildpack for Java applications that use Maven as build tool.
5-
The buildpack installs Oracle JDK 1.8.0_60 and Maven 3.3.9 by default. The
5+
The buildpack installs Oracle JDK 1.8.0_65 and Maven 3.3.9 by default. The
66
buildpack can also be configured to install JCE Unlimited Strength policy
77
files and Ruby gems. If the application has NewRelic plugin installed, the
88
buildpack will install NewRelic java agent automatically and enable it.
@@ -24,7 +24,7 @@ Usage
2424
...
2525
-----> Fetching custom git buildpack... done
2626
-----> Java app detected
27-
-----> Installing JDK... (downloading...) version 1.8.0_60 installed
27+
-----> Installing JDK... (downloading...) version 1.8.0_65 installed
2828
-----> Installing Maven... version 3.3.9 installed
2929
-----> Installing NewRelic agent... done
3030
-----> Executing build...

lib/utils

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ java_version() {
5151
install_java() {
5252
cache_dir=$1
5353
build_dir=$2
54-
jdk_url=${3:-"http://download.oracle.com/otn-pub/java/jdk/8u60-b27/jdk-8u60-linux-x64.tar.gz"}
55-
jdk_ver=${4:-"1.8.0_60"}
54+
jdk_url=${3:-"http://download.oracle.com/otn-pub/java/jdk/8u65-b17/jdk-8u65-linux-x64.tar.gz"}
55+
jdk_ver=${4:-"1.8.0_65"}
5656

5757
if [ ! -d "${cache_dir}" ]; then error "Invalid cache directory to store JDK."; fi
5858
if [ ! -d "${build_dir}" ]; then error "Invalid slug directory to install JDK."; fi

0 commit comments

Comments
 (0)