Skip to content

Commit

Permalink
Update for Gradle 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Silver committed Jan 6, 2017
1 parent 286373a commit f3f7aa4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions 1.02-Exercise-InstallGradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ installation of Gradle. First make sure you have an installation of by running
The output should be something like:
java version "1.8.0_102"
Java(TM) SE Runtime Environment (build 1.8.0_102-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)
java version "1.8.0_112"
Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.112-b16, mixed mode)
If not, skip below to find Java installation instructions.
Expand Down Expand Up @@ -48,9 +48,9 @@ terminal. Note that you may need to change the version number on the first and
third lines. Note that you may need to run the following command
with `sudo` out in front.
unzip ~/Downloads/gradle-3.2.1-all.zip -d /usr/local/gradle/ &&\
unzip ~/Downloads/gradle-3.3-all.zip -d /usr/local/gradle/ &&\
echo '# Adding Gradle to system path
export GRADLE_HOME=/usr/local/gradle/gradle-3.2.1
export GRADLE_HOME=/usr/local/gradle/gradle-3.3
PATH=$GRADLE_HOME/bin:$PATH
export PATH' >> ~/.bash_profile &&\
source ~/.bash_profile
Expand All @@ -60,14 +60,14 @@ source ~/.bash_profile
First, head over to https://gradle.org/gradle-download/, and download the latest
version of Gradle. Note that we want the complete distribution. Next, we'll
unzip Gradle and move it to where we want it to live. Our recommendation is in
`C:\gradle-3.2.1`.
`C:\gradle-3.3`.
To tell Windows where to find Gradle, we need to add an environment variable.
Navigate to the Control Panel > System > Advanced system settings > Advanced >
Environment Variables... > System variables > New...
Set the variable name to: GRADLE_HOME Set the variable value to the location
you unzipped Gradle if you followed our suggestion it should be: C:\gradle-3.2.1
you unzipped Gradle if you followed our suggestion it should be: C:\gradle-3.3
Then edit the PATH user variable by appending: ;%GRADLE_HOME%\bin\
Expand Down Expand Up @@ -118,9 +118,9 @@ Before following these instructions, check to make sure you haven't already
installed Java by running `java -version`. If the output is something like the
following:
java version "1.8.0_102"
Java(TM) SE Runtime Environment (build 1.8.0_102-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)
java version "1.8.0_112"
Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.112-b16, mixed mode)
then you're already good to go!
Expand Down

0 comments on commit f3f7aa4

Please sign in to comment.