Skip to content

Commit 2990682

Browse files
committed
Updated to Maven 3.3.9.
1 parent 1c5a051 commit 2990682

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.3 by default. The
5+
The buildpack installs Oracle JDK 1.8.0_60 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.
@@ -25,7 +25,7 @@ Usage
2525
-----> Fetching custom git buildpack... done
2626
-----> Java app detected
2727
-----> Installing JDK... (downloading...) version 1.8.0_60 installed
28-
-----> Installing Maven... version 3.3.3 installed
28+
-----> Installing Maven... version 3.3.9 installed
2929
-----> Installing NewRelic agent... done
3030
-----> Executing build...
3131
mvn -B -Duser.home=/tmp/build_2be971b4-90c0-48d4-8045-8ef1b5521352 -Dmaven.repo.local=/app/tmp/cache/.m2/repository -DskipTests=true -U clean install

lib/utils

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ maven_version() {
102102

103103
install_maven() {
104104
cache_dir=$1
105-
maven_url=${2:-"http://www.eu.apache.org/dist/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz"}
106-
maven_ver=${3:-"3.3.3"}
105+
maven_url=${2:-"http://www.eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz"}
106+
maven_ver=${3:-"3.3.9"}
107107

108108
if [ ! -d "${cache_dir}" ]; then error "Invalid cache directory to store Maven."; fi
109109

0 commit comments

Comments
 (0)