Skip to content

Commit

Permalink
Resolve conflict of agent dependencies version (#28812)
Browse files Browse the repository at this point in the history
* Resolve conflict of dependencies version

* Resolve conflict of agent dependencies version

* Resolve conflict of agent dependencies version

* Resolve conflict of agent dependencies version

* Resolve conflict of agent dependencies version
  • Loading branch information
terrymanu authored Oct 20, 2023
1 parent 3a97b5e commit 98bc28e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
26 changes: 23 additions & 3 deletions agent/plugins/tracing/type/opentelemetry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
<name>${project.artifactId}</name>

<properties>
<opentelemetry-bom.version>1.22.0</opentelemetry-bom.version>
<opentelemetry-autoconfigure.version>1.22.0-alpha</opentelemetry-autoconfigure.version>
<opentelemetry-bom.version>1.31.0</opentelemetry-bom.version>
<okhttp.version>4.12.0</okhttp.version>
<kotlin-stdlib.version>1.9.10</kotlin-stdlib.version>
</properties>

<dependencyManagement>
Expand All @@ -40,6 +41,26 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin-stdlib.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>${kotlin-stdlib.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin-stdlib.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -67,7 +88,6 @@
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-sdk-extension-autoconfigure</artifactId>
<version>${opentelemetry-autoconfigure.version}</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
<calcite.version>1.35.0</calcite.version>
<immutables.version>2.9.3</immutables.version>
<netty.version>4.1.99.Final</netty.version>
<netty-tcnative.version>2.0.62.Final</netty-tcnative.version>
<bouncycastle.version>1.70</bouncycastle.version>

<javax.transaction.version>1.1</javax.transaction.version>
Expand Down Expand Up @@ -372,6 +373,11 @@
<classifier>linux-aarch_64</classifier>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>${netty-tcnative.version}</version>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/agent/plugins/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<name>${project.artifactId}</name>

<properties>
<okhttp.version>3.7.0</okhttp.version>
<okhttp.version>4.12.0</okhttp.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 98bc28e

Please sign in to comment.