Skip to content

Commit 9b0614c

Browse files
authored
Merge pull request #1540 from CMSgov/QPPA-10618-update-spring-security-and-framework
QPPA-10618 updates spring security and spring framework
2 parents 1ab48de + 4b6349a commit 9b0614c

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

generate/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.apache.maven</groupId>
5151
<artifactId>maven-plugin-api</artifactId>
52-
<version>3.6.2</version>
52+
<version>3.9.8</version>
5353
</dependency>
5454

5555
<dependency>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.apache.maven</groupId>
6363
<artifactId>maven-core</artifactId>
64-
<version>3.8.1</version>
64+
<version>3.9.8</version>
6565
<exclusions>
6666
<exclusion>
6767
<groupId>org.apache.maven.shared</groupId>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<properties>
1313
<java.version>17</java.version>
14-
<aws.version>1.12.316</aws.version>
14+
<aws.version>1.12.787</aws.version>
1515
<junit.version>5.8.1</junit.version>
1616
<jjwt.version>0.10.7</jjwt.version>
1717

@@ -431,13 +431,13 @@
431431
<dependency>
432432
<groupId>ch.qos.logback</groupId>
433433
<artifactId>logback-classic</artifactId>
434-
<version>1.5.12</version>
434+
<version>1.5.13</version>
435435
</dependency>
436436

437437
<dependency>
438438
<groupId>ch.qos.logback</groupId>
439439
<artifactId>logback-core</artifactId>
440-
<version>1.5.12</version>
440+
<version>1.5.13</version>
441441
</dependency>
442442

443443
<dependency>

rest-api/pom.xml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<plugin>
3131
<groupId>org.springframework.boot</groupId>
3232
<artifactId>spring-boot-maven-plugin</artifactId>
33-
<version>3.3.7</version>
33+
<version>3.4.7</version>
3434
<executions>
3535
<execution>
3636
<goals>
@@ -63,7 +63,7 @@
6363
<!-- Import dependency management from Spring Boot -->
6464
<groupId>org.springframework.boot</groupId>
6565
<artifactId>spring-boot-dependencies</artifactId>
66-
<version>3.3.7</version>
66+
<version>3.4.7</version>
6767
<type>pom</type>
6868
<scope>import</scope>
6969
</dependency>
@@ -72,6 +72,11 @@
7272
<artifactId>spring-webmvc</artifactId>
7373
<version>6.1.14</version>
7474
</dependency>
75+
<dependency>
76+
<groupId>org.springframework.security</groupId>
77+
<artifactId>spring-security-crypto</artifactId>
78+
<version>6.3.8</version>
79+
</dependency>
7580
</dependencies>
7681
</dependencyManagement>
7782

@@ -122,17 +127,17 @@
122127
<dependency>
123128
<groupId>org.springframework.boot</groupId>
124129
<artifactId>spring-boot-starter-security</artifactId>
125-
<version>3.3.7</version>
130+
<version>3.4.7</version>
126131
</dependency>
127132
<dependency>
128133
<groupId>org.springframework.boot</groupId>
129134
<artifactId>spring-boot-starter-web</artifactId>
130-
<version>3.3.7</version>
135+
<version>3.4.7</version>
131136
</dependency>
132137
<dependency>
133138
<groupId>org.springframework</groupId>
134139
<artifactId>spring-web</artifactId>
135-
<version>6.1.15</version>
140+
<version>6.1.21</version>
136141
</dependency>
137142
<dependency>
138143
<groupId>org.springframework.security</groupId>
@@ -178,7 +183,7 @@
178183
<dependency>
179184
<groupId>org.springframework</groupId>
180185
<artifactId>spring-test</artifactId>
181-
<version>6.1.15</version>
186+
<version>6.1.21</version>
182187
<scope>test</scope>
183188
<exclusions>
184189
<exclusion>
@@ -211,13 +216,6 @@
211216
</exclusion>
212217
</exclusions>
213218
</dependency>
214-
215-
<dependency>
216-
<groupId>org.springframework</groupId>
217-
<artifactId>spring-beans</artifactId>
218-
<version>6.1.15</version>
219-
</dependency>
220-
221219
<dependency>
222220
<groupId>org.springframework.boot</groupId>
223221
<artifactId>spring-boot-test</artifactId>
@@ -319,7 +317,7 @@
319317
<dependency>
320318
<groupId>org.springframework.boot</groupId>
321319
<artifactId>spring-boot-starter-test</artifactId>
322-
<version>3.3.7</version>
320+
<version>3.4.7</version>
323321
<scope>test</scope>
324322
<exclusions>
325323
<exclusion>

0 commit comments

Comments
 (0)