Skip to content

Commit f6c86da

Browse files
authored
Updates dependency versions to the latest. (#8)
1 parent c042dbf commit f6c86da

8 files changed

Lines changed: 32 additions & 33 deletions

File tree

skaffold-gradle-plugin/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
plugins {
22
id 'java-gradle-plugin'
33
id 'checkstyle'
4-
id 'com.github.sherter.google-java-format' version '0.6'
4+
id 'com.github.sherter.google-java-format' version '0.7.1'
55

66
// For local install
77
id 'maven'
88

99
// Error-prone checker
10-
id 'net.ltgt.apt' version '0.15'
11-
id 'net.ltgt.errorprone' version '0.0.14'
10+
id 'net.ltgt.apt' version '0.18'
11+
id 'net.ltgt.errorprone' version '0.0.16'
1212

1313
// Prepare release
14-
id 'net.researchgate.release' version '2.6.0'
14+
id 'net.researchgate.release' version '2.7.0'
1515
// Gradle Plugin Portal publish
16-
id 'com.gradle.plugin-publish' version '0.9.10'
16+
id 'com.gradle.plugin-publish' version '0.10.0'
1717
}
1818

1919
group 'com.google.cloud.tools'
@@ -56,20 +56,20 @@ configurations {
5656

5757
dependencies {
5858
// These are copied over from skaffold-plugins-core and are necessary for the skaffold-plugins-core sourcesets.
59-
compile 'com.google.guava:guava:23.6.1-jre'
59+
compile 'com.google.guava:guava:26.0-jre'
6060

6161
testCompile 'junit:junit:4.12'
62-
testCompile 'org.mockito:mockito-core:2.18.3'
62+
testCompile 'org.mockito:mockito-core:2.21.0'
6363

6464
compile gradleApi()
6565

6666
// NullAway errorprone plugin
67-
annotationProcessor 'com.uber.nullaway:nullaway:0.4.6'
67+
annotationProcessor 'com.uber.nullaway:nullaway:0.5.2'
6868
errorprone 'com.google.errorprone:error_prone_core:2.3.1'
6969
}
7070

7171
task wrapper(type: Wrapper) {
72-
gradleVersion = '4.8'
72+
gradleVersion = '4.9'
7373
}
7474

7575
// Integration tests must be run explicitly
@@ -106,7 +106,7 @@ check.dependsOn verifyGoogleJavaFormat
106106

107107
/* CHECKSTYLE */
108108
checkstyle {
109-
toolVersion = '8.10.1'
109+
toolVersion = '8.11'
110110

111111
// get the google_checks.xml file from the checkstyle jar and take out the java checks
112112
def googleChecks = resources.text.fromArchiveEntry(configurations.checkstyle[0], 'google_checks.xml').asString()
-383 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Fri Jun 08 00:48:31 EDT 2018
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-bin.zip

skaffold-maven-plugin/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
<dependency>
5656
<groupId>com.google.guava</groupId>
5757
<artifactId>guava</artifactId>
58-
<version>23.6.1-jre</version>
58+
<version>26.0-jre</version>
5959
<scope>compile</scope>
6060
</dependency>
6161
<!-- End dependencies from skaffold-plugins-core -->
6262

6363
<dependency>
6464
<groupId>org.apache.maven</groupId>
6565
<artifactId>maven-plugin-api</artifactId>
66-
<version>3.5.3</version>
66+
<version>3.5.4</version>
6767
</dependency>
6868

6969
<!-- Maven plugin development annotations -->
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.apache.maven</groupId>
7979
<artifactId>maven-core</artifactId>
80-
<version>3.5.3</version>
80+
<version>3.5.4</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.apache.maven.shared</groupId>
@@ -95,7 +95,7 @@
9595
<dependency>
9696
<groupId>org.mockito</groupId>
9797
<artifactId>mockito-core</artifactId>
98-
<version>2.18.3</version>
98+
<version>2.21.0</version>
9999
<scope>test</scope>
100100
</dependency>
101101
</dependencies>
@@ -109,7 +109,7 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-failsafe-plugin</artifactId>
112-
<version>2.21.0</version>
112+
<version>2.22.0</version>
113113
<configuration>
114114
<classesDirectory>${project.build.directory}/classes</classesDirectory>
115115
<includes>
@@ -259,7 +259,7 @@
259259
<plugin>
260260
<groupId>org.apache.maven.plugins</groupId>
261261
<artifactId>maven-compiler-plugin</artifactId>
262-
<version>3.7.0</version>
262+
<version>3.8.0</version>
263263
<executions>
264264
<execution>
265265
<id>compile-with-nullaway</id>
@@ -279,7 +279,7 @@
279279
<path>
280280
<groupId>com.uber.nullaway</groupId>
281281
<artifactId>nullaway</artifactId>
282-
<version>0.4.6</version>
282+
<version>0.5.2</version>
283283
</path>
284284
</annotationProcessorPaths>
285285
<compilerArgs>
@@ -309,7 +309,7 @@
309309
<plugin>
310310
<groupId>org.apache.maven.plugins</groupId>
311311
<artifactId>maven-surefire-plugin</artifactId>
312-
<version>2.21.0</version>
312+
<version>2.22.0</version>
313313
<configuration>
314314
<excludes>
315315
<exclude>**/*IntegrationTest.java</exclude>
@@ -327,7 +327,7 @@
327327
<plugin>
328328
<groupId>com.coveo</groupId>
329329
<artifactId>fmt-maven-plugin</artifactId>
330-
<version>2.5.0</version>
330+
<version>2.5.1</version>
331331
<dependencies>
332332
<dependency>
333333
<groupId>com.google.googlejavaformat</groupId>
@@ -353,7 +353,7 @@
353353
<dependency>
354354
<groupId>com.puppycrawl.tools</groupId>
355355
<artifactId>checkstyle</artifactId>
356-
<version>8.10.1</version>
356+
<version>8.11</version>
357357
</dependency>
358358
</dependencies>
359359
<configuration>

skaffold-plugins-core/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
22
id 'java'
33
id 'checkstyle'
4-
id 'com.github.sherter.google-java-format' version '0.6'
4+
id 'com.github.sherter.google-java-format' version '0.7.1'
55

66
// Error-prone checker
7-
id 'net.ltgt.apt' version '0.15'
8-
id 'net.ltgt.errorprone' version '0.0.14'
7+
id 'net.ltgt.apt' version '0.18'
8+
id 'net.ltgt.errorprone' version '0.0.16'
99
}
1010

1111
group 'com.google.cloud.tools'
@@ -35,18 +35,18 @@ configurations {
3535

3636
dependencies {
3737
// Make sure these are consistent with skaffold-maven-plugin and skaffold-gradle-plugin.
38-
compile 'com.google.guava:guava:23.6.1-jre'
38+
compile 'com.google.guava:guava:26.0-jre'
3939

4040
testCompile 'junit:junit:4.12'
41-
testCompile 'org.mockito:mockito-core:2.18.3'
41+
testCompile 'org.mockito:mockito-core:2.21.0'
4242

4343
// NullAway errorprone plugin
44-
annotationProcessor 'com.uber.nullaway:nullaway:0.4.6'
44+
annotationProcessor 'com.uber.nullaway:nullaway:0.5.2'
4545
errorprone 'com.google.errorprone:error_prone_core:2.3.1'
4646
}
4747

48-
task wrapper(type: Wrapper) {
49-
gradleVersion = '4.8'
48+
wrapper {
49+
gradleVersion = '4.9'
5050
}
5151

5252
// Integration tests must be run explicitly
@@ -83,7 +83,7 @@ check.dependsOn verifyGoogleJavaFormat
8383

8484
/* CHECKSTYLE */
8585
checkstyle {
86-
toolVersion = '8.10.1'
86+
toolVersion = '8.11'
8787

8888
// get the google_checks.xml file from the checkstyle jar and take out the java checks
8989
def googleChecks = resources.text.fromArchiveEntry(configurations.checkstyle[0], 'google_checks.xml').asString()
84 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

skaffold-plugins-core/src/test/java/com/google/cloud/tools/skaffold/filesystem/UserCacheHomeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/** Tests for {@link UserCacheHome}. */
3535
public class UserCacheHomeTest {
3636

37-
@Rule public TemporaryFolder temporaryFolder = new TemporaryFolder();
37+
@Rule public final TemporaryFolder temporaryFolder = new TemporaryFolder();
3838

3939
private String fakeCacheHome;
4040

0 commit comments

Comments
 (0)