Skip to content
Closed
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
23 changes: 22 additions & 1 deletion app/multi-tenant/central-space/cloud-cap-samples-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.6</version>
<version>3.5.16</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -72,6 +72,27 @@
<version>4.0.0</version>
</dependency>

<!-- Security: fix Netty CVEs (BlackDuck) -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>4.2.15.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Security: fix Bouncy Castle CVEs (BlackDuck) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.84</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down
23 changes: 22 additions & 1 deletion app/multi-tenant/personal-space/cloud-cap-samples-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.6</version>
<version>3.5.16</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -72,6 +72,27 @@
<version>4.0.0</version>
</dependency>

<!-- Security: fix Netty CVEs (BlackDuck) -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>4.2.15.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Security: fix Bouncy Castle CVEs (BlackDuck) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.84</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down
23 changes: 22 additions & 1 deletion app/single-tenant/central-space/demoapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<!-- DEPENDENCIES VERSION -->
<jdk.version>21</jdk.version>
<cds.services.version>4.1.1</cds.services.version>
<spring.boot.version>3.3.1</spring.boot.version>
<spring.boot.version>3.5.16</spring.boot.version>
<cds.install-cdsdk.version>8.0.2</cds.install-cdsdk.version>

<cds.install-node.downloadUrl>https://nodejs.org/dist/</cds.install-node.downloadUrl>
Expand Down Expand Up @@ -48,6 +48,27 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Security: fix Netty CVEs (BlackDuck) -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>4.2.15.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Security: fix Bouncy Castle CVEs (BlackDuck) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.84</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
23 changes: 22 additions & 1 deletion app/single-tenant/personal-space/demoapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<!-- DEPENDENCIES VERSION -->
<jdk.version>21</jdk.version>
<cds.services.version>4.1.1</cds.services.version>
<spring.boot.version>3.3.1</spring.boot.version>
<spring.boot.version>3.5.16</spring.boot.version>
<cds.install-cdsdk.version>8.0.2</cds.install-cdsdk.version>

<cds.install-node.downloadUrl>https://nodejs.org/dist/</cds.install-node.downloadUrl>
Expand Down Expand Up @@ -48,6 +48,27 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Security: fix Netty CVEs (BlackDuck) -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>4.2.15.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- Security: fix Bouncy Castle CVEs (BlackDuck) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.84</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
Loading