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
6 changes: 6 additions & 0 deletions gxawsserverless/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@
<artifactId>lambda</artifactId>
<version>${software.awssdk.version}</version>
</dependency>
<!-- overwrite from lambda due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxazureserverless/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<artifactId>azure-messaging-eventgrid</artifactId>
<version>4.31.4</version>
</dependency>
<!-- overwrite from azure-messaging-eventgrid due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxcloudstorage-awss3-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
<artifactId>s3</artifactId>
<version>${software.awssdk.version}</version>
</dependency>
<!-- overwrite from s3 due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
Expand Down
8 changes: 7 additions & 1 deletion gxcosmosdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,18 @@
<artifactId>azure-cosmos</artifactId>
</dependency>

<!-- overrite from azure-cosmos due to transitive CVEs -->
<!-- overwrite from azure-cosmos due to transitive CVEs -->
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
<version>1.16.2</version>
</dependency>
<!-- overwrite from azure-core-http-netty due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
7 changes: 7 additions & 0 deletions gxdynamodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>dynamodb</artifactId>
<version>2.40.8</version>
</dependency>
<!-- overwrite from dynamodb due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxqueue-awssqs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
<artifactId>sqs</artifactId>
<version>${software.awssdk.version}</version>
</dependency>
<!-- overwrite from sqs due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<poi.version>5.4.1</poi.version>
<jackson.version>2.16.2</jackson.version>
<junit.version>4.13.2</junit.version>
<software.awssdk.version>2.35.6</software.awssdk.version>
<software.awssdk.version>2.40.8</software.awssdk.version>
<software.azure.cosmos.version>4.74.0</software.azure.cosmos.version>
<log4j.version>2.21.1</log4j.version>
<io.opentelemetry.version>1.56.0</io.opentelemetry.version>
Expand All @@ -34,6 +34,7 @@
<xmlsec.version>3.0.3</xmlsec.version>
<jose.version>10.4</jose.version>
<commons.lang3.version>3.18.0</commons.lang3.version>
<netty.version>4.1.129.Final</netty.version>

</properties>

Expand Down
Loading