Skip to content

Commit 386c532

Browse files
committed
#30 update dependencies to latest snap 3.1.0
1 parent 0df3b71 commit 386c532

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

pom.xml

+9-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.husky.test.integration</groupId>
66
<artifactId>husky-integration-tests</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.1.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -13,12 +13,12 @@
1313
<maven.compiler.release>${java.version}</maven.compiler.release>
1414
<maven.compiler.source>${java.version}</maven.compiler.source>
1515
<maven.compiler.target>${java.version}</maven.compiler.target>
16-
<husky.version>3.0.1-SNAPSHOT</husky.version>
17-
<spring.version>6.1.14</spring.version>
18-
<spring.boot.version>3.3.4</spring.boot.version>
19-
<camel.version>4.8.0</camel.version>
16+
<husky.version>3.1.0-SNAPSHOT</husky.version>
17+
<spring.version>6.2.2</spring.version>
18+
<spring.boot.version>3.4.3</spring.boot.version>
19+
<camel.version>4.8.3</camel.version>
2020
<junit.version>5.10.1</junit.version>
21-
<ipf.version>5.0-m3</ipf.version>
21+
<ipf.version>5.0.0</ipf.version>
2222
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
2323
</properties>
2424
<repositories>
@@ -302,7 +302,7 @@
302302
<plugin>
303303
<groupId>org.owasp</groupId>
304304
<artifactId>dependency-check-maven</artifactId>
305-
<version>11.1.0</version>
305+
<version>12.1.0</version>
306306
<configuration>
307307
<skipProvidedScope>true</skipProvidedScope>
308308
<skipRuntimeScope>true</skipRuntimeScope>
@@ -314,6 +314,7 @@
314314
<format>HTML</format>
315315
<format>JSON</format>
316316
</formats>
317+
<nvdApiServerId>nvd-server</nvdApiServerId>
317318
</configuration>
318319
<executions>
319320
<execution>
@@ -333,7 +334,7 @@
333334
<plugin>
334335
<groupId>org.owasp</groupId>
335336
<artifactId>dependency-check-maven</artifactId>
336-
<version>11.1.0</version>
337+
<version>12.1.0</version>
337338
<reportSets>
338339
<reportSet>
339340
<reports>

src/test/java/org/projecthusky/communication/services/xds/XdsFindFoldersStoredQueryTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void testFindFoldersStoredQuery() {
3434
dest.setSenderApplicationOid("1.2.3.4");
3535

3636
XdsFindFoldersStoredQuery query = this.service.createFindFoldersStoredQuery().destination(dest).patientID(patientId)
37-
.availabilityStatus(List.of(AvailabilityStatus.SUBMITTED)).build();
37+
.availabilityStatus(List.of(AvailabilityStatus.APPROVED)).build();
3838

3939
assertTrue(query.getIpfQuery() instanceof FindFoldersQuery);
4040

src/test/java/org/projecthusky/communication/testhelper/XdsTestUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public XdsTestUtils() {
101101
eDateTimeRanges = new org.projecthusky.communication.xd.storedquery.DateTimeRange[] {
102102
eDateTimeRange1, eDateTimeRange2 };
103103

104-
availabilityStatus = AvailabilityStatus.SUBMITTED;
104+
availabilityStatus = AvailabilityStatus.APPROVED;
105105

106106
// Initialize AuthorPerson
107107
authorPerson = new Author();

src/test/java/org/projecthusky/communication/utils/XdsTestUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public XdsTestUtils() {
100100
eDateTimeRanges = new DateTimeRange[] {
101101
eDateTimeRange1, eDateTimeRange2 };
102102

103-
availabilityStatus = AvailabilityStatus.SUBMITTED;
103+
availabilityStatus = AvailabilityStatus.APPROVED;
104104

105105
// Initialize AuthorPerson
106106
authorPerson = new Author();

0 commit comments

Comments
 (0)