Skip to content

Commit df1b787

Browse files
authored
Merge branch 'aws:main' into main
2 parents c04fd13 + 2f2a93d commit df1b787

File tree

20 files changed

+30
-30
lines changed

20 files changed

+30
-30
lines changed

aws-serverless-java-container-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</parent>
1717

1818
<properties>
19-
<spring.version>6.1.12</spring.version>
19+
<spring.version>6.1.13</spring.version>
2020
<spring-security.version>6.3.3</spring-security.version>
2121
</properties>
2222

aws-serverless-java-container-springboot3/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<version>2.1.0-SNAPSHOT</version>
1616

1717
<properties>
18-
<spring.version>6.1.12</spring.version>
19-
<springboot.version>3.3.3</springboot.version>
18+
<spring.version>6.1.13</spring.version>
19+
<springboot.version>3.3.4</springboot.version>
2020
<springsecurity.version>6.3.3</springsecurity.version>
2121
</properties>
2222

aws-serverless-java-container-struts/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</parent>
1616

1717
<properties>
18-
<struts.version>7.0.0-M8</struts.version>
18+
<struts.version>7.0.0-M9</struts.version>
1919
</properties>
2020

2121
<dependencies>

aws-serverless-spring-archetype/src/main/resources/archetype-resources/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77

88
dependencies {
99
implementation (
10-
'org.springframework:spring-webmvc:6.1.12',
11-
'org.springframework:spring-context:6.1.12',
10+
'org.springframework:spring-webmvc:6.1.13',
11+
'org.springframework:spring-context:6.1.13',
1212
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
1313
'org.apache.logging.log4j:log4j-core:2.24.0',
1414
'org.apache.logging.log4j:log4j-api:2.24.0',

aws-serverless-spring-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<properties>
1717
<maven.compiler.source>1.8</maven.compiler.source>
1818
<maven.compiler.target>1.8</maven.compiler.target>
19-
<spring.version>6.1.12</spring.version>
19+
<spring.version>6.1.13</spring.version>
2020
<junit.version>5.11.0</junit.version>
2121
<log4j.version>2.24.0</log4j.version>
2222
</properties>

aws-serverless-springboot3-archetype/src/main/resources/archetype-resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99

1010
dependencies {
1111
implementation (
12-
'org.springframework.boot:spring-boot-starter-web:3.3.3',
12+
'org.springframework.boot:spring-boot-starter-web:3.3.4',
1313
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',
1414
)
1515

aws-serverless-springboot3-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.springframework.boot</groupId>
1818
<artifactId>spring-boot-starter-parent</artifactId>
19-
<version>3.3.3</version>
19+
<version>3.3.4</version>
2020
</parent>
2121

2222
<properties>

aws-serverless-struts-archetype/src/main/resources/archetype-resources/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ dependencies {
1818
exclude group: 'org.apache.logging.log4j', module: 'log4j-api'
1919
exclude group: 'org.apache.logging.log4j', module: 'log4j-to-slf4j'
2020
}
21-
implementation ('org.apache.struts:struts2-convention-plugin:7.0.0-M8') {
21+
implementation ('org.apache.struts:struts2-convention-plugin:7.0.0-M9') {
2222
exclude group: 'org.apache.struts', module: 'struts2-core'
2323
}
24-
implementation ('org.apache.struts:struts2-rest-plugin:7.0.0-M8') {
24+
implementation ('org.apache.struts:struts2-rest-plugin:7.0.0-M9') {
2525
exclude group: 'org.apache.struts', module: 'struts2-core'
2626
}
27-
implementation ('org.apache.struts:struts2-bean-validation-plugin:7.0.0-M8') {
27+
implementation ('org.apache.struts:struts2-bean-validation-plugin:7.0.0-M9') {
2828
exclude group: 'org.apache.struts', module: 'struts2-core'
2929
}
3030
implementation ('com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.4.3') {
3131
exclude group: 'org.apache.struts', module: 'struts2-core'
3232
}
33-
implementation ('org.apache.struts:struts2-core:7.0.0-M8') {
33+
implementation ('org.apache.struts:struts2-core:7.0.0-M9') {
3434
exclude group: 'org.apache.logging.log4j', module: 'log4j-api'
3535
}
3636
implementation ('org.hibernate.validator:hibernate-validator:6.1.7.Final')
@@ -45,7 +45,7 @@ dependencies {
4545
testImplementation("org.apache.httpcomponents.client5:httpclient5:5.3.1")
4646
testImplementation(platform("org.junit:junit-bom:5.11.0"))
4747
testImplementation("org.junit.jupiter:junit-jupiter")
48-
testImplementation('org.apache.struts:struts2-junit-plugin:7.0.0-M8') {
48+
testImplementation('org.apache.struts:struts2-junit-plugin:7.0.0-M9') {
4949
exclude group: 'org.apache.struts', module: 'struts2-core'
5050
}
5151
}

aws-serverless-struts-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<maven.compiler.source>1.8</maven.compiler.source>
1717
<maven.compiler.target>1.8</maven.compiler.target>
18-
<struts.version>7.0.0-M8</struts.version>
18+
<struts.version>7.0.0-M9</struts.version>
1919
<jackson.version>2.17.2</jackson.version>
2020
<junit.version>5.11.0</junit.version>
2121
<log4j.version>2.24.0</log4j.version>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
<plugin>
207207
<groupId>org.apache.maven.plugins</groupId>
208208
<artifactId>maven-surefire-plugin</artifactId>
209-
<version>3.3.1</version>
209+
<version>3.5.0</version>
210210
</plugin>
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)