Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions dapr-spring/dapr-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Pin Netty to the gRPC-supported 4.1.x line (root netty.version); MUST precede the Spring Boot
BOM, which manages Netty 4.2.x - unsupported by the non-shaded grpc-netty this SDK uses. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@

<dependencyManagement>
<dependencies>
<!-- Pin Netty to the gRPC-supported 4.1.x line (root netty.version); MUST precede the Spring Boot
BOM, which manages Netty 4.2.x - unsupported by the non-shaded grpc-netty this SDK uses. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
9 changes: 9 additions & 0 deletions dapr-spring/dapr-spring-data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@

<dependencyManagement>
<dependencies>
<!-- Pin Netty to the gRPC-supported 4.1.x line (root netty.version); MUST precede the Spring Boot
BOM, which manages Netty 4.2.x - unsupported by the non-shaded grpc-netty this SDK uses. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
9 changes: 9 additions & 0 deletions sdk-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
<dependencies>
<!-- Import the Spring Boot 4 BOM so JUnit (jupiter + platform) resolves consistently to 6.x,
matching the spring-boot-sdk-tests module and the Spring Boot 4 starter pulled in here. -->
<!-- Pin Netty to the gRPC-supported 4.1.x line (root netty.version); MUST precede the Spring Boot
BOM, which manages Netty 4.2.x - unsupported by the non-shaded grpc-netty this SDK uses. -->
<dependency>
Comment thread
javier-aliaga marked this conversation as resolved.
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
9 changes: 9 additions & 0 deletions spring-boot-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Pin Netty to the gRPC-supported 4.1.x line (root netty.version); MUST precede the Spring Boot
BOM, which manages Netty 4.2.x - unsupported by the non-shaded grpc-netty this SDK uses. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
9 changes: 9 additions & 0 deletions spring-boot-sdk-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@

<dependencyManagement>
<dependencies>
<!-- Pin Netty to the gRPC-supported 4.1.x line (root netty.version); MUST precede the Spring Boot
BOM, which manages Netty 4.2.x - unsupported by the non-shaded grpc-netty this SDK uses. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
Loading