Skip to content

Commit

Permalink
Replace netty version only for geoserver microservices, or gaeway is …
Browse files Browse the repository at this point in the history
…broken

Downgrading the netty version breaks the gateway service.
Only downgrade for src/apps/geoserver/* apps.
  • Loading branch information
groldan committed Apr 30, 2023
1 parent fcffcf1 commit 5a46f18
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
13 changes: 13 additions & 0 deletions src/apps/geoserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@
<!-- temporarily disabled -->
<!-- <module>catalog</module>-->
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<!-- downgrade netty.version used by spring-boot to the one used by geoserver azure client -->
<!-- (software.amazon.awssdk:netty-nio-client:jar:2.9.24) for COG and GWC Azure plugin -->
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.geoserver.cloud</groupId>
Expand Down
9 changes: 0 additions & 9 deletions src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,6 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<!-- downgrade netty.version used by spring-boot to the one used by geoserver azure client -->
<!-- (software.amazon.awssdk:netty-nio-client:jar:2.9.24) for COG and GWC Azure plugin -->
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<!-- Upgrade jackson from the 2.13.5 version provided by spring-boot to 2.14.2 which supports snakeyaml 2.0 -->
<!-- Note the trick for it to take effect and override all jackson deps is to declare it before the spring-boot bom -->
Expand Down

0 comments on commit 5a46f18

Please sign in to comment.