@@ -11,9 +11,9 @@ installation of Gradle. First make sure you have an installation of by running
11
11
12
12
The output should be something like:
13
13
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)
17
17
18
18
If not, skip below to find Java installation instructions.
19
19
@@ -48,9 +48,9 @@ terminal. Note that you may need to change the version number on the first and
48
48
third lines. Note that you may need to run the following command
49
49
with `sudo` out in front.
50
50
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/ &&\
52
52
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
54
54
PATH=$GRADLE_HOME/bin:$PATH
55
55
export PATH' >> ~/.bash_profile &&\
56
56
source ~/.bash_profile
@@ -60,14 +60,14 @@ source ~/.bash_profile
60
60
First, head over to https://gradle.org/gradle-download/, and download the latest
61
61
version of Gradle. Note that we want the complete distribution. Next, we'll
62
62
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 `.
64
64
65
65
To tell Windows where to find Gradle, we need to add an environment variable.
66
66
Navigate to the Control Panel > System > Advanced system settings > Advanced >
67
67
Environment Variables... > System variables > New...
68
68
69
69
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
71
71
72
72
Then edit the PATH user variable by appending: ;%GRADLE_HOME%\bin\
73
73
@@ -118,9 +118,9 @@ Before following these instructions, check to make sure you haven't already
118
118
installed Java by running `java -version`. If the output is something like the
119
119
following:
120
120
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)
124
124
125
125
then you're already good to go!
126
126
0 commit comments