Update dependencies (#3276)

This commit is contained in:
Anuraag Agrawal 2021-06-03 23:55:52 +09:00 committed by GitHub
parent ff85102a46
commit 72722158ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 25 additions and 25 deletions

View File

@ -65,7 +65,7 @@ public class SdkDesignTest {
String name = input.getName();
List<JavaClass> parents = new ArrayList<>(input.getOwner().getAllRawSuperclasses());
parents.addAll(input.getOwner().getAllInterfaces());
parents.addAll(input.getOwner().getAllRawInterfaces());
for (JavaClass parent : parents) {
Optional<JavaMethod> found = parent.tryGetMethod(name, paramsType);

View File

@ -12,25 +12,25 @@ val dependencyVersions = hashMapOf<String, String>()
rootProject.extra["versions"] = dependencyVersions
val DEPENDENCY_BOMS = listOf(
"com.linecorp.armeria:armeria-bom:1.5.0",
"io.grpc:grpc-bom:1.36.1",
"com.linecorp.armeria:armeria-bom:1.8.0",
"io.grpc:grpc-bom:1.38.0",
"io.zipkin.brave:brave-bom:5.13.3",
"com.google.guava:guava-bom:30.1.1-jre",
"com.google.protobuf:protobuf-bom:3.15.7",
"com.fasterxml.jackson:jackson-bom:2.12.2",
"org.junit:junit-bom:5.7.1",
"com.google.protobuf:protobuf-bom:3.17.2",
"com.fasterxml.jackson:jackson-bom:2.12.3",
"org.junit:junit-bom:5.7.2",
"io.zipkin.reporter2:zipkin-reporter-bom:2.16.3"
)
val DEPENDENCY_SETS = listOf(
DependencySet(
"com.google.auto.value",
"1.7.5",
"1.8.1",
listOf("auto-value", "auto-value-annotations")
),
DependencySet(
"com.google.errorprone",
"2.6.0",
"2.7.1",
listOf("error_prone_annotations", "error_prone_core")
),
DependencySet(
@ -45,7 +45,7 @@ val DEPENDENCY_SETS = listOf(
),
DependencySet(
"io.prometheus",
"0.10.0",
"0.11.0",
listOf("simpleclient", "simpleclient_common", "simpleclient_httpserver")
),
DependencySet(
@ -55,17 +55,17 @@ val DEPENDENCY_SETS = listOf(
),
DependencySet(
"org.openjdk.jmh",
"1.29",
"1.32",
listOf("jmh-core", "jmh-generator-bytecode")
),
DependencySet(
"org.mockito",
"3.8.0",
"3.10.0",
listOf("mockito-core", "mockito-junit-jupiter")
),
DependencySet(
"org.testcontainers",
"1.15.2",
"1.15.3",
listOf("testcontainers", "junit-jupiter")
)
)
@ -73,28 +73,28 @@ val DEPENDENCY_SETS = listOf(
val DEPENDENCIES = listOf(
"com.github.stefanbirkner:system-rules:1.19.0",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:2.8.6",
"com.google.code.gson:gson:2.8.7",
"com.google.guava:guava-beta-checker:1.0",
"com.lmax:disruptor:3.4.2",
"com.lmax:disruptor:3.4.4",
"com.sparkjava:spark-core:2.9.3",
"com.squareup.okhttp3:okhttp:4.9.1",
"com.sun.net.httpserver:http:20070405",
"com.tngtech.archunit:archunit-junit4:0.17.0",
"com.tngtech.archunit:archunit-junit4:0.19.0",
"com.uber.nullaway:nullaway:0.9.1",
"edu.berkeley.cs.jqf:jqf-fuzz:1.6",
"edu.berkeley.cs.jqf:jqf-fuzz:1.7",
"eu.rekawek.toxiproxy:toxiproxy-java:2.1.4",
"io.github.netmikey.logunit:logunit-jul:1.1.0",
"io.jaegertracing:jaeger-client:1.6.0",
"io.opentracing:opentracing-api:0.33.0",
"io.zipkin.zipkin2:zipkin-junit:2.23.2",
"junit:junit:4.13.2",
"nl.jqno.equalsverifier:equalsverifier:3.5.5",
"nl.jqno.equalsverifier:equalsverifier:3.6.1",
"org.assertj:assertj-core:3.19.0",
"org.awaitility:awaitility:4.0.3",
"org.awaitility:awaitility:4.1.0",
"org.codehaus.mojo:animal-sniffer-annotations:1.20",
"org.curioswitch.curiostack:protobuf-jackson:1.2.0",
"org.jctools:jctools-core:3.3.0",
"org.junit-pioneer:junit-pioneer:1.3.8",
"org.junit-pioneer:junit-pioneer:1.4.2",
"org.skyscreamer:jsonassert:1.5.0",
"org.slf4j:slf4j-simple:1.7.30"
)

View File

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.1-bin.zip
distributionSha256Sum=dccda8aa069563c8ba2f6cdfd0777df0e34a5b4d15138ca8b9757e94f4e8a8cb
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionSha256Sum=0e46229820205440b48a5501122002842b82886e76af35f0f3a069243dca4b3c
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -1,7 +1,7 @@
pluginManagement {
plugins {
id("com.diffplug.spotless") version "5.11.1"
id("com.github.ben-manes.versions") version "0.38.0"
id("com.diffplug.spotless") version "5.12.5"
id("com.github.ben-manes.versions") version "0.39.0"
id("com.github.johnrengelman.shadow") version "7.0.0"
id("com.google.protobuf") version "0.8.16"
id("com.gradle.enterprise") version "3.6"
@ -9,12 +9,12 @@ pluginManagement {
id("de.undercouch.download") version "4.1.1"
id("io.codearte.nexus-staging") version "0.30.0"
id("io.morethan.jmhreport") version "0.9.0"
id("me.champeau.jmh") version "0.6.4"
id("me.champeau.jmh") version "0.6.5"
id("nebula.release") version "15.3.1"
id("net.ltgt.errorprone") version "2.0.1"
id("net.ltgt.nullaway") version "1.1.0"
id("org.checkerframework") version "0.5.20"
id("org.jetbrains.kotlin.jvm") version "1.5.0"
id("org.jetbrains.kotlin.jvm") version "1.5.10"
id("org.unbroken-dome.test-sets") version "4.0.0"
id("ru.vyarus.animalsniffer") version "1.5.3"
id("me.champeau.gradle.japicmp") version "0.2.9"