File tree Expand file tree Collapse file tree 13 files changed +21
-21
lines changed
aws-serverless-java-container-spring
aws-serverless-java-container-springboot3
aws-serverless-jersey-archetype/src/main/resources/archetype-resources
aws-serverless-spring-archetype/src/main/resources/archetype-resources
aws-serverless-springboot3-archetype/src/main/resources/archetype-resources Expand file tree Collapse file tree 13 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 16
16
</parent >
17
17
18
18
<properties >
19
- <spring .version>6.2.6 </spring .version>
19
+ <spring .version>6.2.8 </spring .version>
20
20
<spring-security .version>6.4.5</spring-security .version>
21
21
</properties >
22
22
Original file line number Diff line number Diff line change 15
15
<version >2.1.4-SNAPSHOT</version >
16
16
17
17
<properties >
18
- <spring .version>6.2.6 </spring .version>
18
+ <spring .version>6.2.8 </spring .version>
19
19
<springboot .version>3.4.5</springboot .version>
20
20
<springsecurity .version>6.4.5</springsecurity .version>
21
21
</properties >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repositories {
8
8
dependencies {
9
9
implementation (
10
10
' com.amazonaws.serverless:aws-serverless-java-container-jersey:[2.0-SNAPSHOT,)' ,
11
- ' com.fasterxml.jackson.core:jackson-databind:2.18.3 ' ,
11
+ ' com.fasterxml.jackson.core:jackson-databind:2.19.1 ' ,
12
12
)
13
13
14
14
implementation(" org.glassfish.jersey.media:jersey-media-json-jackson:3.1.10" ) {
@@ -22,8 +22,8 @@ dependencies {
22
22
}
23
23
24
24
testImplementation(" com.amazonaws.serverless:aws-serverless-java-container-core:[2.0-SNAPSHOT,):tests" )
25
- testImplementation(" org.apache.httpcomponents.client5:httpclient5:5.4.3 " )
26
- testImplementation(platform(" org.junit:junit-bom:5.12 .1" ))
25
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5:5.5 " )
26
+ testImplementation(platform(" org.junit:junit-bom:5.13 .1" ))
27
27
testImplementation(" org.junit.jupiter:junit-jupiter" )
28
28
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
29
29
}
Original file line number Diff line number Diff line change @@ -7,18 +7,18 @@ repositories {
7
7
8
8
dependencies {
9
9
implementation (
10
- ' org.springframework:spring-webmvc:6.2.6 ' ,
11
- ' org.springframework:spring-context:6.2.6 ' ,
10
+ ' org.springframework:spring-webmvc:6.2.8 ' ,
11
+ ' org.springframework:spring-context:6.2.8 ' ,
12
12
' com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)' ,
13
13
' org.apache.logging.log4j:log4j-core:2.24.3' ,
14
14
' org.apache.logging.log4j:log4j-api:2.24.3' ,
15
15
' org.apache.logging.log4j:log4j-slf4j-impl:2.24.3' ,
16
- ' com.fasterxml.jackson.core:jackson-databind:2.18.3 ' ,
16
+ ' com.fasterxml.jackson.core:jackson-databind:2.19.1 ' ,
17
17
' com.amazonaws:aws-lambda-java-log4j2:1.6.0' ,
18
18
)
19
19
20
20
testImplementation(" com.amazonaws.serverless:aws-serverless-java-container-core:[2.0-SNAPSHOT,):tests" )
21
- testImplementation(" org.apache.httpcomponents.client5:httpclient5:5.4.3 " )
21
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5:5.5 " )
22
22
testImplementation(platform(" org.junit:junit-bom:5.12.2" ))
23
23
testImplementation(" org.junit.jupiter:junit-jupiter" )
24
24
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ dependencies {
14
14
)
15
15
16
16
testImplementation(" com.amazonaws.serverless:aws-serverless-java-container-core:[2.0-SNAPSHOT,):tests" )
17
- testImplementation(" org.apache.httpcomponents.client5:httpclient5:5.4.3 " )
17
+ testImplementation(" org.apache.httpcomponents.client5:httpclient5:5.5 " )
18
18
testImplementation(platform(" org.junit:junit-bom:5.12.1" ))
19
19
testImplementation(" org.junit.jupiter:junit-jupiter" )
20
20
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
Original file line number Diff line number Diff line change 78
78
<properties >
79
79
<jacoco .minCoverage>0.7</jacoco .minCoverage>
80
80
<dependencyCheck .version>12.1.1</dependencyCheck .version>
81
- <jackson .version>2.18.3 </jackson .version>
81
+ <jackson .version>2.19.1 </jackson .version>
82
82
<slf4j .version>2.0.17</slf4j .version>
83
83
<junit .version>5.12.2</junit .version>
84
84
<mockito .version>5.17.0</mockito .version>
119
119
<dependency >
120
120
<groupId >org.apache.httpcomponents.client5</groupId >
121
121
<artifactId >httpclient5</artifactId >
122
- <version >5.4.3 </version >
122
+ <version >5.5 </version >
123
123
<scope >test</scope >
124
124
</dependency >
125
125
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repositories {
8
8
dependencies {
9
9
implementation (
10
10
' com.amazonaws.serverless:aws-serverless-java-container-jersey:[2.0-SNAPSHOT,)' ,
11
- ' com.fasterxml.jackson.core:jackson-databind:2.18.3 ' ,
11
+ ' com.fasterxml.jackson.core:jackson-databind:2.19.1 ' ,
12
12
)
13
13
14
14
implementation(" org.glassfish.jersey.media:jersey-media-json-jackson:3.1.10" ) {
Original file line number Diff line number Diff line change 27
27
<maven .compiler.source>1.8</maven .compiler.source>
28
28
<maven .compiler.target>1.8</maven .compiler.target>
29
29
<jersey .version>3.1.10</jersey .version>
30
- <jackson .version>2.18.3 </jackson .version>
30
+ <jackson .version>2.19.1 </jackson .version>
31
31
</properties >
32
32
33
33
<dependencies >
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ repositories {
7
7
8
8
dependencies {
9
9
implementation (
10
- ' org.springframework:spring-webmvc:6.2.6 ' ,
11
- ' org.springframework:spring-context:6.2.6 ' ,
10
+ ' org.springframework:spring-webmvc:6.2.8 ' ,
11
+ ' org.springframework:spring-context:6.2.8 ' ,
12
12
' com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)' ,
13
13
' org.apache.logging.log4j:log4j-core:2.24.3' ,
14
14
' org.apache.logging.log4j:log4j-api:2.24.3' ,
15
15
' org.apache.logging.log4j:log4j-slf4j-impl:2.24.3' ,
16
- ' com.fasterxml.jackson.core:jackson-databind:2.18.3 ' ,
16
+ ' com.fasterxml.jackson.core:jackson-databind:2.19.1 ' ,
17
17
' com.amazonaws:aws-lambda-java-log4j2:1.6.0' ,
18
18
)
19
19
}
Original file line number Diff line number Diff line change 24
24
</licenses >
25
25
26
26
<properties >
27
- <spring .version>6.2.6 </spring .version>
27
+ <spring .version>6.2.8 </spring .version>
28
28
<log4j .version>2.24.3</log4j .version>
29
29
<maven .compiler.source>17</maven .compiler.source>
30
30
<maven .compiler.target>17</maven .compiler.target>
Original file line number Diff line number Diff line change 13
13
<parent >
14
14
<groupId >org.springframework.boot</groupId >
15
15
<artifactId >spring-boot-starter-parent</artifactId >
16
- <version >3.4.5 </version >
16
+ <version >3.5.0 </version >
17
17
</parent >
18
18
19
19
<licenses >
Original file line number Diff line number Diff line change 13
13
<parent >
14
14
<groupId >org.springframework.boot</groupId >
15
15
<artifactId >spring-boot-starter-parent</artifactId >
16
- <version >3.4.5 </version >
16
+ <version >3.5.0 </version >
17
17
</parent >
18
18
19
19
<licenses >
Original file line number Diff line number Diff line change 13
13
<parent >
14
14
<groupId >org.springframework.boot</groupId >
15
15
<artifactId >spring-boot-starter-parent</artifactId >
16
- <version >3.4.5 </version >
16
+ <version >3.5.0 </version >
17
17
</parent >
18
18
19
19
<licenses >
You can’t perform that action at this time.
0 commit comments