Skip to content

Commit 00d9cd4

Browse files
committed
updated gradle to 4.8
dependency updates: - com.github.ben-manes.versions [0.14.0 -> 0.17.0] - gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin [0.13.1 -> 0.14.0] - com.jfrog.bintray:com.jfrog.bintray.gradle.plugin [1.7.3 -> 1.8.0] - com.google.code.findbugs:jsr305 [2.0.1 -> 3.0.2] - com.squareup:javapoet [1.8.0 -> 1.11.1] - com.google.auto:auto-common [0.8 -> 0.10] - com.google.auto.service:auto-service [1.0-rc3 -> 1.0-rc4] - com.google.testing.compile:compile-testing [0.10 -> 0.15] - com.google.truth:truth [0.32 -> 0.40]
1 parent 90f4b63 commit 00d9cd4

File tree

11 files changed

+39
-31
lines changed

11 files changed

+39
-31
lines changed

.idea/modules/enum-mapper-lib/enum-mapper-lib_main.iml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/enum-mapper-lib/enum-mapper-lib_test.iml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/enum-mapper-processor/enum-mapper-processor_main.iml

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/enum-mapper-processor/enum-mapper-processor_test.iml

Lines changed: 15 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
dependencies {
3-
classpath "gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.13.1"
3+
classpath "gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0"
44
}
55
}
66

@@ -18,9 +18,9 @@ plugins {
1818
* the results in the Inspection view will contain dependencies that can be updated
1919
* Android>Lint>Correctness>Obsolete Gradle Dependency
2020
*/
21-
id 'com.github.ben-manes.versions' version '0.14.0'
21+
id 'com.github.ben-manes.versions' version '0.17.0'
2222
// for publishing
23-
id "com.jfrog.bintray" version "1.7.3"
23+
id "com.jfrog.bintray" version "1.8.0"
2424
}
2525

2626
// https://docs.travis-ci.com/user/environment-variables/

enum-mapper-lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ dependencies {
1010
/* jsr305 includes a NonNull annotation
1111
* see also: http://stackoverflow.com/questions/4963300/which-notnull-java-annotation-should-i-use
1212
*/
13-
compileOnly 'com.google.code.findbugs:jsr305:2.0.1'
13+
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
1414
}

enum-mapper-processor/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ sourceCompatibility = 1.8
55
dependencies {
66
compile project(':enum-mapper-lib')
77

8-
compile 'com.squareup:javapoet:1.8.0'
9-
compile 'com.google.auto.service:auto-service:1.0-rc3'
10-
compile 'com.google.auto:auto-common:0.8'
8+
compile 'com.squareup:javapoet:1.11.1'
9+
compile 'com.google.auto.service:auto-service:1.0-rc4'
10+
compile 'com.google.auto:auto-common:0.10'
1111

12-
testCompile 'com.google.testing.compile:compile-testing:0.10'
13-
testCompile 'com.google.truth:truth:0.32'
12+
testCompile 'com.google.testing.compile:compile-testing:0.15'
13+
testCompile 'com.google.truth:truth:0.40'
1414
/* we need the JVM tools, otherwise the tests may fail with:
1515
* java.lang.NoClassDefFoundError: com/sun/source/util/TreeScanner
1616
*/

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Dorg.gradle.warning.mode=all

gradle/wrapper/gradle-wrapper.jar

205 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Sat Dec 02 16:48:23 CET 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip

0 commit comments

Comments
 (0)