Skip to content

Commit f3f7aa4

Browse files
author
Jeremy Silver
committed
Update for Gradle 3.3
1 parent 286373a commit f3f7aa4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Diff for: 1.02-Exercise-InstallGradle/build.gradle

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ installation of Gradle. First make sure you have an installation of by running
1111
1212
The output should be something like:
1313
14-
java version "1.8.0_102"
15-
Java(TM) SE Runtime Environment (build 1.8.0_102-b14)
16-
Java HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)
14+
java version "1.8.0_112"
15+
Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
16+
Java HotSpot(TM) 64-Bit Server VM (build 25.112-b16, mixed mode)
1717
1818
If not, skip below to find Java installation instructions.
1919
@@ -48,9 +48,9 @@ terminal. Note that you may need to change the version number on the first and
4848
third lines. Note that you may need to run the following command
4949
with `sudo` out in front.
5050
51-
unzip ~/Downloads/gradle-3.2.1-all.zip -d /usr/local/gradle/ &&\
51+
unzip ~/Downloads/gradle-3.3-all.zip -d /usr/local/gradle/ &&\
5252
echo '# Adding Gradle to system path
53-
export GRADLE_HOME=/usr/local/gradle/gradle-3.2.1
53+
export GRADLE_HOME=/usr/local/gradle/gradle-3.3
5454
PATH=$GRADLE_HOME/bin:$PATH
5555
export PATH' >> ~/.bash_profile &&\
5656
source ~/.bash_profile
@@ -60,14 +60,14 @@ source ~/.bash_profile
6060
First, head over to https://gradle.org/gradle-download/, and download the latest
6161
version of Gradle. Note that we want the complete distribution. Next, we'll
6262
unzip Gradle and move it to where we want it to live. Our recommendation is in
63-
`C:\gradle-3.2.1`.
63+
`C:\gradle-3.3`.
6464
6565
To tell Windows where to find Gradle, we need to add an environment variable.
6666
Navigate to the Control Panel > System > Advanced system settings > Advanced >
6767
Environment Variables... > System variables > New...
6868
6969
Set the variable name to: GRADLE_HOME Set the variable value to the location
70-
you unzipped Gradle if you followed our suggestion it should be: C:\gradle-3.2.1
70+
you unzipped Gradle if you followed our suggestion it should be: C:\gradle-3.3
7171
7272
Then edit the PATH user variable by appending: ;%GRADLE_HOME%\bin\
7373
@@ -118,9 +118,9 @@ Before following these instructions, check to make sure you haven't already
118118
installed Java by running `java -version`. If the output is something like the
119119
following:
120120
121-
java version "1.8.0_102"
122-
Java(TM) SE Runtime Environment (build 1.8.0_102-b14)
123-
Java HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)
121+
java version "1.8.0_112"
122+
Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
123+
Java HotSpot(TM) 64-Bit Server VM (build 25.112-b16, mixed mode)
124124
125125
then you're already good to go!
126126

0 commit comments

Comments
 (0)