Skip to content

Commit

Permalink
Update gradle 4.10.1
Browse files Browse the repository at this point in the history
And

* Update un-compatible dependencies. (SpotBugs)
* Fix deprecated feature usage.

```
The ConfigurableReport.setDestination(Object) method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the method ConfigurableReport.setDestination(File) instead.
        at build_7lmo6x5yy25habfnsnz0lhhh2$_run_closure3$_closure25.doCall(~/build.gradle:191)
        (Run with --stacktrace to get the full stack trace of this deprecation warning.)
```
  • Loading branch information
kazuki-ma committed Sep 17, 2018
1 parent 88c4c41 commit 9148912
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ buildscript {
maven { url 'https://repo.spring.io/plugins-release' }
}
dependencies {
classpath 'gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:1.6.2'
classpath 'gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:1.6.3'
classpath 'gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:1.4.17'
classpath 'io.spring.gradle:dependency-management-plugin:1.0.6.RELEASE'
classpath 'io.spring.gradle:propdeps-plugin:0.0.9.RELEASE'
Expand Down Expand Up @@ -188,7 +188,7 @@ task codeCoverageReport(type: JacocoReport) {

reports {
xml.enabled true
xml.destination "${buildDir}/reports/jacoco/report.xml"
xml.destination file('reports/jacoco/report.xml')
html.enabled true
csv.enabled false
}
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.gradle.warning.mode=all
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip

0 comments on commit 9148912

Please sign in to comment.