Skip to content

Commit 286373a

Browse files
author
Jeremy Silver
committed
Bring 2.13 up to date
1 parent 9fc04ab commit 286373a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: 2.13-Exercise-ConfigureTheGradleWrapper/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Exercises:
99
1010
1. Run the 'wrapper' task to create the Gradle wrapper files.
1111
2. Use the wrapper to run the 'tasks' task.
12-
3. Configure the 'wrapper' task to use Gradle version 2.2.1.
12+
3. Configure the 'wrapper' task to use Gradle version 2.14.1.
1313
4. Use the wrapper with the '--version' option to confirm it is using
14-
Gradle version 2.2.1.
14+
Gradle version 2.14.1.
1515
5. Modify the gradle-wrapper.properties file to use the latest Gradle
1616
nightly build.
1717

Diff for: 2.13-Exercise-ConfigureTheGradleWrapper/solution.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ using the following:
1717
*/
1818

1919
wrapper {
20-
gradleVersion = '2.2.1'
20+
gradleVersion = '2.14.1'
2121
}
2222

2323
/*
@@ -38,6 +38,6 @@ distributionBase=GRADLE_USER_HOME
3838
distributionPath=wrapper/dists
3939
zipStoreBase=GRADLE_USER_HOME
4040
zipStorePath=wrapper/dists
41-
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-3.3-20161128000019+0000-bin.zip
41+
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-3.4-20170106000025+0000-bin.zip
4242
4343
*/

0 commit comments

Comments
 (0)