Skip to content

Commit

Permalink
Updated to Oracle JDK 1.8.0_65.
Browse files Browse the repository at this point in the history
  • Loading branch information
trautonen committed Nov 29, 2015
1 parent b6fc3f0 commit 0664468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Heroku buildpack: Oracle JDK
============================

This is a Heroku buildpack for Java applications that use Maven as build tool.
The buildpack installs Oracle JDK 1.8.0_60 and Maven 3.3.9 by default. The
The buildpack installs Oracle JDK 1.8.0_65 and Maven 3.3.9 by default. The
buildpack can also be configured to install JCE Unlimited Strength policy
files and Ruby gems. If the application has NewRelic plugin installed, the
buildpack will install NewRelic java agent automatically and enable it.
Expand All @@ -24,7 +24,7 @@ Usage
...
-----> Fetching custom git buildpack... done
-----> Java app detected
-----> Installing JDK... (downloading...) version 1.8.0_60 installed
-----> Installing JDK... (downloading...) version 1.8.0_65 installed
-----> Installing Maven... version 3.3.9 installed
-----> Installing NewRelic agent... done
-----> Executing build...
Expand Down
4 changes: 2 additions & 2 deletions lib/utils
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ java_version() {
install_java() {
cache_dir=$1
build_dir=$2
jdk_url=${3:-"http://download.oracle.com/otn-pub/java/jdk/8u60-b27/jdk-8u60-linux-x64.tar.gz"}
jdk_ver=${4:-"1.8.0_60"}
jdk_url=${3:-"http://download.oracle.com/otn-pub/java/jdk/8u65-b17/jdk-8u65-linux-x64.tar.gz"}
jdk_ver=${4:-"1.8.0_65"}

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

0 comments on commit 0664468

Please sign in to comment.