Skip to content

Commit

Permalink
[pinpoint-apm#11489] Cleanup reactor dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Sep 12, 2024
1 parent d633b07 commit 7bdf7e6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<version>1.0.16</version>
<exclusions>
<exclusion>
<groupId>io.projectreactor.netty.incubator</groupId>
Expand Down
3 changes: 0 additions & 3 deletions agent-module/plugins-it/spring-data-r2dbc-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,14 @@
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-h2</artifactId>
<version>0.9.1.RELEASE</version>
</dependency>
<dependency>
<groupId>dev.miku</groupId>
<artifactId>r2dbc-mysql</artifactId>
<version>0.8.2.RELEASE</version>
</dependency>
<dependency>
<groupId>com.github.jasync-sql</groupId>
<artifactId>jasync-r2dbc-mysql</artifactId>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
Expand Down
24 changes: 12 additions & 12 deletions agent-module/plugins/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -383,18 +383,6 @@
</exclusions>
</dependency>

<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.3.0.RELEASE</version>
</dependency>

<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<version>0.9.1.RELEASE</version>
</dependency>

<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
Expand Down Expand Up @@ -426,6 +414,12 @@
<groupId>dev.miku</groupId>
<artifactId>r2dbc-mysql</artifactId>
<version>0.8.2.RELEASE</version>
<exclusions>
<exclusion>
<groupId>io.projectreactor.netty.incubator</groupId>
<artifactId>reactor-netty-incubator-quic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.jasync-sql</groupId>
Expand All @@ -441,6 +435,12 @@
<groupId>org.postgresql</groupId>
<artifactId>r2dbc-postgresql</artifactId>
<version>0.9.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>io.projectreactor.netty.incubator</groupId>
<artifactId>reactor-netty-incubator-quic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.oracle.database.r2dbc</groupId>
Expand Down
6 changes: 6 additions & 0 deletions agent-module/plugins/reactor-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<exclusions>
<exclusion>
<groupId>io.projectreactor.netty.incubator</groupId>
<artifactId>reactor-netty-incubator-quic</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 7bdf7e6

Please sign in to comment.