|
42 | 42 | <maven.compiler.target>11</maven.compiler.target> |
43 | 43 | <maven.compiler.release>11</maven.compiler.release> |
44 | 44 | <maven.deploy.skip>true</maven.deploy.skip> |
45 | | - <jackson.version>2.16.2</jackson.version> |
| 45 | + <jackson.version>2.18.6</jackson.version> |
46 | 46 | <gpg.skip>true</gpg.skip> |
47 | 47 | <spotbugs.fail>true</spotbugs.fail> |
48 | 48 | <spotbugs.exclude.filter.file>${maven.multiModuleProjectDirectory}/spotbugs-exclude.xml</spotbugs.exclude.filter.file> |
|
53 | 53 | <snakeyaml.version>2.0</snakeyaml.version> |
54 | 54 | <testcontainers.version>1.21.4</testcontainers.version> |
55 | 55 | <!-- Do NOT UPGRADE spring.version without checking springboot.version alignment --> |
56 | | - <springboot.version>3.4.9</springboot.version> |
57 | | - <springframework.version>6.2.7</springframework.version> |
| 56 | + <springboot.version>3.4.10</springboot.version> |
| 57 | + <springframework.version>6.2.11</springframework.version> |
58 | 58 | <!-- Do NOT UPGRADE springframework.version without checking springboot.version alignment --> |
59 | 59 | <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
60 | 60 | <assertj.version>3.27.7</assertj.version> |
|
82 | 82 | <opentelemetry-bom.version>2.1.0</opentelemetry-bom.version> |
83 | 83 | <kotlin.version>2.1.0</kotlin.version> |
84 | 84 | <rest-assured.version>5.5.1</rest-assured.version> |
| 85 | + <!-- TODO: Remove netty-bom override once gRPC ships with Netty >= 4.1.132 (CVE-2026-33871, CVE-2026-33870) --> |
| 86 | + <netty.version>4.1.132.Final</netty.version> |
85 | 87 | </properties> |
86 | 88 |
|
87 | 89 | <distributionManagement> |
|
106 | 108 | <!-- BOMs - Import first to establish baseline dependency versions --> |
107 | 109 | <!-- ====================================================================== --> |
108 | 110 | <dependency> |
109 | | - <groupId>io.grpc</groupId> |
110 | | - <artifactId>grpc-bom</artifactId> |
111 | | - <version>${grpc.version}</version> |
| 111 | + <groupId>io.netty</groupId> |
| 112 | + <artifactId>netty-bom</artifactId> |
| 113 | + <version>${netty.version}</version> |
112 | 114 | <type>pom</type> |
113 | 115 | <scope>import</scope> |
114 | 116 | </dependency> |
115 | 117 | <dependency> |
116 | | - <groupId>org.springframework.boot</groupId> |
117 | | - <artifactId>spring-boot-dependencies</artifactId> |
118 | | - <version>${springboot.version}</version> |
| 118 | + <groupId>io.grpc</groupId> |
| 119 | + <artifactId>grpc-bom</artifactId> |
| 120 | + <version>${grpc.version}</version> |
119 | 121 | <type>pom</type> |
120 | 122 | <scope>import</scope> |
121 | 123 | </dependency> |
|
126 | 128 | <type>pom</type> |
127 | 129 | <scope>import</scope> |
128 | 130 | </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.springframework.boot</groupId> |
| 133 | + <artifactId>spring-boot-dependencies</artifactId> |
| 134 | + <version>${springboot.version}</version> |
| 135 | + <type>pom</type> |
| 136 | + <scope>import</scope> |
| 137 | + </dependency> |
129 | 138 | <dependency> |
130 | 139 | <groupId>org.junit</groupId> |
131 | 140 | <artifactId>junit-bom</artifactId> |
|
0 commit comments