File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Heroku buildpack: Oracle JDK
22============================
33
44This 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
66buildpack can also be configured to install JCE Unlimited Strength policy
77files and Ruby gems. If the application has NewRelic plugin installed, the
88buildpack will install NewRelic java agent automatically and enable it.
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...
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ java_version() {
5151install_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
You can’t perform that action at this time.
0 commit comments