Skip to content

Commit

Permalink
Remove kotlin stdlib (#3590)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Sep 9, 2021
1 parent 68c2d48 commit 47fd881
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ val DEPENDENCY_BOMS = listOf(
"com.google.guava:guava-bom:30.1.1-jre",
"com.google.protobuf:protobuf-bom:3.17.3",
"com.linecorp.armeria:armeria-bom:1.9.2",
"com.squareup.okhttp3:okhttp-bom:4.9.1",
"io.grpc:grpc-bom:1.39.0",
"io.zipkin.brave:brave-bom:5.13.3",
"io.zipkin.reporter2:zipkin-reporter-bom:2.16.3",
Expand Down Expand Up @@ -79,7 +78,11 @@ val DEPENDENCIES = listOf(
"com.google.code.gson:gson:2.8.7",
"com.google.guava:guava-beta-checker:1.0",
"com.lmax:disruptor:3.4.4",
"com.squareup.okhttp3:okhttp:4.9.1",
// using old version of okhttp to avoid pulling in kotlin stdlib
// not using (old) okhttp bom because that is pulling in old guava version
// and overriding the guava bom
"com.squareup.okhttp3:okhttp:3.12.13",
"com.squareup.okhttp3:okhttp-tls:3.12.13",
"com.sun.net.httpserver:http:20070405",
"com.tngtech.archunit:archunit-junit4:0.20.1",
"com.uber.nullaway:nullaway:0.9.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import java.util.List;
import java.util.function.Supplier;
import java.util.stream.Stream;
import org.jetbrains.annotations.Nullable;
import javax.annotation.Nullable;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.extension.ExtensionContext;
Expand Down

0 comments on commit 47fd881

Please sign in to comment.