This is an automated email from the ASF dual-hosted git repository. msingh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ozone.git
commit d4c7f169ff6e4eeb1f9e5b04a13bb0e8be25ba98 Author: Doroszlai, Attila <[email protected]> AuthorDate: Mon Mar 22 09:47:20 2021 +0100 HDDS-4996. Upgrade kotlin-stdlib (#2061) --- hadoop-hdds/common/pom.xml | 4 ++++ pom.xml | 11 +++++++++++ 2 files changed, 15 insertions(+) diff --git a/hadoop-hdds/common/pom.xml b/hadoop-hdds/common/pom.xml index 7e5311b..8fc3747 100644 --- a/hadoop-hdds/common/pom.xml +++ b/hadoop-hdds/common/pom.xml @@ -172,6 +172,10 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>jaeger-client</artifactId> </dependency> <dependency> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-stdlib</artifactId> + </dependency> + <dependency> <groupId>io.opentracing</groupId> <artifactId>opentracing-util</artifactId> </dependency> diff --git a/pom.xml b/pom.xml index 7d55016..5b6be04 100644 --- a/pom.xml +++ b/pom.xml @@ -1345,6 +1345,17 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs <groupId>io.jaegertracing</groupId> <artifactId>jaeger-client</artifactId> <version>${jaeger.version}</version> + <exclusions> + <exclusion> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-stdlib</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-stdlib</artifactId> + <version>1.4.31</version> </dependency> <dependency> <groupId>io.opentracing</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
