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
2 changes: 1 addition & 1 deletion pass-data-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<jsonapi-adapters.version>1.1.0</jsonapi-adapters.version>
<slf4j.version>2.0.16</slf4j.version>
<logback.version>1.5.16</logback.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<junit.jupiter.version>5.10.5</junit.jupiter.version>
<mockito.version>5.11.0</mockito.version>
<testcontainers.version>1.19.8</testcontainers.version>
Expand Down
6 changes: 6 additions & 0 deletions pass-deposit-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
<awsspring.version>3.2.1</awsspring.version>
<commons-compress.version>1.27.1</commons-compress.version>
<commons-io.version>2.17.0</commons-io.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<okhttp.version>4.12.0</okhttp.version>
<xmlunit.version>2.10.0</xmlunit.version>
<commons-codec.version>1.17.1</commons-codec.version>
Expand Down Expand Up @@ -206,6 +207,11 @@
<artifactId>netty-common</artifactId>
<version>4.1.118.Final</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<!-- End of transitive deps with CVE issues. -->
</dependencies>
</dependencyManagement>
Expand Down
6 changes: 6 additions & 0 deletions pass-grant-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<commons.csv.version>1.12.0</commons.csv.version>
<mysql.jdbc.version>9.4.0</mysql.jdbc.version>
<maven-model.version>3.9.9</maven-model.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -66,6 +67,11 @@
<artifactId>netty-common</artifactId>
<version>4.1.118.Final</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<!-- End of transitive deps with CVE issues. -->
</dependencies>
</dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions pass-journal-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<properties>
<spring-boot-maven-plugin.version>3.3.5</spring-boot-maven-plugin.version>
<commons.csv.version>1.12.0</commons.csv.version>
<commons-lang.version>3.14.0</commons-lang.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<slf4j.version>2.0.16</slf4j.version>
<logback.version>1.5.16</logback.version>
<junit.jupiter.version>5.10.5</junit.jupiter.version>
Expand All @@ -42,7 +42,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang.version}</version>
<version>${commons-lang3.version}</version>
</dependency>

<dependency>
Expand Down
6 changes: 6 additions & 0 deletions pass-nihms-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<okhttp.version>4.12.0</okhttp.version>
<commons-collections4.version>4.4</commons-collections4.version>
<joda-time.version>2.13.0</joda-time.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -87,6 +88,11 @@
<artifactId>netty-common</artifactId>
<version>4.1.118.Final</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<!-- End of transitive deps with CVE issues. -->

</dependencies>
Expand Down
6 changes: 6 additions & 0 deletions pass-notification-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<greenmail-junit5.version>2.1.0</greenmail-junit5.version>
<jakarta-json.version>2.0.1</jakarta-json.version>
<maven-model.version>3.9.9</maven-model.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -69,6 +70,11 @@
<artifactId>netty-common</artifactId>
<version>4.1.118.Final</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<!-- End of transitive deps with CVE issues. -->
</dependencies>
</dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import java.net.URL;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

/**
Expand All @@ -45,11 +46,13 @@ public void resolveClasspathUrl() {
assertNotNull(springUriTemplateResolver.resolve(null, "classpath:" + packageName + "/" + "templateToResolve"));
}

@Disabled("flaky test using example.com")
@Test
public void resolveHttpUrl() {
assertNotNull(springUriTemplateResolver.resolve(null, "http://example.org"));
}

@Disabled("flaky test using example.com")
@Test
public void resolveHttpsUrl() {
assertNotNull(springUriTemplateResolver.resolve(null, "https://example.org"));
Expand Down