Skip to content
This repository has been archived by the owner on Sep 13, 2018. It is now read-only.

Commit

Permalink
Update to Gradle 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tbroyer committed Apr 10, 2017
1 parent 0c76d1a commit 0c4229e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sudo: false
matrix:
include:
- jdk: openjdk7
env: TEST_GRADLE_VERSIONS=3.5-rc-2
env: TEST_GRADLE_VERSIONS=3.5
- jdk: oraclejdk8
env: TEST_GRADLE_VERSIONS=2.6
- jdk: oraclejdk8
Expand Down Expand Up @@ -33,7 +33,7 @@ matrix:
- jdk: oraclejdk8
env: TEST_GRADLE_VERSIONS=3.4
- jdk: oraclejdk8
env: TEST_GRADLE_VERSIONS=3.5-rc-2
env: TEST_GRADLE_VERSIONS=3.5
install: true
script: ./gradlew build -Ptest.gradle-versions="$TEST_GRADLE_VERSIONS"
before_cache:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build_script:
- cmd: .\gradlew.bat assemble --no-daemon

test_script:
- cmd: .\gradlew.bat check --no-daemon -Ptest.gradle-versions=3.5-rc-2
- cmd: .\gradlew.bat check --no-daemon -Ptest.gradle-versions=3.5

environment:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.5"
//classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.9"
classpath "com.github.tbroyer:gradle-errorprone-plugin:052a7aedb2"
classpath "com.github.tbroyer:gradle-errorprone-plugin:0c76d1a130"
classpath "gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.6"
}
}
Expand Down Expand Up @@ -63,7 +63,7 @@ dependencies {
}

wrapper {
gradleVersion = "3.5-rc-2"
gradleVersion = "3.5"
}

test {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Mar 28 11:09:04 CEST 2017
#Mon Apr 10 17:43:01 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-rc-2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.ltgt.gradle.errorprone

class IntegrationTestHelper {
static final GRADLE_VERSIONS = System.getProperty("test.gradle-versions", "2.6,2.7,2.8,2.9,2.10,2.11,2.12,2.13,2.14,3.0,3.1,3.2,3.3,3.4,3.5-rc-2")
static final GRADLE_VERSIONS = System.getProperty("test.gradle-versions", "2.6,2.7,2.8,2.9,2.10,2.11,2.12,2.13,2.14,3.0,3.1,3.2,3.3,3.4,3.5")
.tokenize(',');
}

0 comments on commit 0c4229e

Please sign in to comment.