Browse Source

Update gradle to 2.11.

This fixes issues downloading from dmdirc.com over SSL, as
previous versions of gradle didn't support SNI.
pull/100/head
Chris Smith 8 years ago
parent
commit
7ea90f927e
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      build.gradle
  2. BIN
      gradle/wrapper/gradle-wrapper.jar
  3. 2
    2
      gradle/wrapper/gradle-wrapper.properties

+ 1
- 1
build.gradle View File

@@ -12,6 +12,6 @@ tasks.dependencies.dependsOn subprojects*.tasks.dependencies
12 12
 
13 13
 task createWrapper(type: Wrapper) {
14 14
     description 'Downloads and installs an up-to-date wrapper for gradle.'
15
-    gradleVersion = '2.10'
15
+    gradleVersion = '2.11'
16 16
 }
17 17
 

BIN
gradle/wrapper/gradle-wrapper.jar View File


+ 2
- 2
gradle/wrapper/gradle-wrapper.properties View File

@@ -1,6 +1,6 @@
1
-#Wed Feb 03 19:23:01 GMT 2016
1
+#Sun Feb 21 16:52:42 GMT 2016
2 2
 distributionBase=GRADLE_USER_HOME
3 3
 distributionPath=wrapper/dists
4 4
 zipStoreBase=GRADLE_USER_HOME
5 5
 zipStorePath=wrapper/dists
6
-distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
6
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-bin.zip

Loading…
Cancel
Save