Skip to content

Commit 4f37cb7

Browse files
committed
Use latest available Apache Struts2 GA version 2.5.26
1 parent e5d824d commit 4f37cb7

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@ dependencies {
1111
exclude group: 'org.apache.struts', module: 'struts2-core'
1212
exclude group: 'org.apache.logging.log4j', module: 'log4j-api'
1313
}
14-
implementation ('org.apache.struts:struts2-convention-plugin:2.5.22') {
14+
implementation ('org.apache.struts:struts2-convention-plugin:2.5.26') {
1515
exclude group: 'org.apache.struts', module: 'struts2-core'
1616
}
17-
implementation ('org.apache.struts:struts2-rest-plugin:2.5.22') {
17+
implementation ('org.apache.struts:struts2-rest-plugin:2.5.26') {
1818
exclude group: 'org.apache.struts', module: 'struts2-core'
1919
}
20-
implementation ('org.apache.struts:struts2-bean-validation-plugin:2.5.22') {
20+
implementation ('org.apache.struts:struts2-bean-validation-plugin:2.5.26') {
2121
exclude group: 'org.apache.struts', module: 'struts2-core'
2222
}
23-
implementation ('com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.0.0') {
23+
implementation ('com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.3.0') {
2424
exclude group: 'org.apache.struts', module: 'struts2-core'
2525
}
26-
implementation ('org.apache.struts:struts2-core:2.5.22') {
26+
implementation ('org.apache.struts:struts2-core:2.5.26') {
2727
exclude group: 'org.apache.logging.log4j', module: 'log4j-api'
2828
}
29-
implementation ('org.hibernate:hibernate-validator:4.3.2.Final')
29+
implementation ('org.hibernate:hibernate-validator:5.3.6.Final')
3030
implementation ('com.fasterxml.jackson.core:jackson-databind:2.12.0')
3131
implementation ('org.apache.logging.log4j:log4j-core:2.8.2')
3232
implementation ('org.apache.logging.log4j:log4j-api:2.8.2')
3333
implementation ('org.apache.logging.log4j:log4j-slf4j-impl:2.8.2')
34-
implementation ('com.amazonaws:aws-lambda-java-log4j2:1.1.0')
34+
implementation ('com.amazonaws:aws-lambda-java-log4j2:1.2.0')
3535

3636
testImplementation('junit:junit:4.12')
37-
testImplementation('org.apache.struts:struts2-junit-plugin:2.5.22') {
37+
testImplementation('org.apache.struts:struts2-junit-plugin:2.5.26') {
3838
exclude group: 'org.apache.struts', module: 'struts2-core'
3939
}
4040
}

samples/struts2/pet-store/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ repositories {
88
dependencies {
99
implementation (
1010
'com.amazonaws.serverless:aws-serverless-java-container-struts2:[1.0,)',
11-
'org.apache.struts:struts2-convention-plugin:2.5.22',
12-
'org.apache.struts:struts2-rest-plugin:2.5.22',
13-
'org.apache.struts:struts2-bean-validation-plugin:2.5.22',
14-
'org.apache.struts:struts2-junit-plugin:2.5.22',
15-
'com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.1.0',
16-
'org.hibernate:hibernate-validator:4.3.2.Final',
11+
'org.apache.struts:struts2-convention-plugin:2.5.26',
12+
'org.apache.struts:struts2-rest-plugin:2.5.26',
13+
'org.apache.struts:struts2-bean-validation-plugin:2.5.26',
14+
'org.apache.struts:struts2-junit-plugin:2.5.26',
15+
'com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.2.0',
16+
'org.hibernate:hibernate-validator:5.3.6.Final',
1717
'com.fasterxml.jackson.core:jackson-databind:2.12.0',
1818
'org.apache.logging.log4j:log4j-core:2.8.2',
1919
'org.apache.logging.log4j:log4j-api:2.8.2',
2020
'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2',
21-
'com.amazonaws:aws-lambda-java-log4j2:1.1.0',
21+
'com.amazonaws:aws-lambda-java-log4j2:1.2.0',
2222
)
2323
}
2424

samples/struts2/pet-store/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<properties>
2727
<maven.compiler.source>1.8</maven.compiler.source>
2828
<maven.compiler.target>1.8</maven.compiler.target>
29-
<struts2.version>2.5.22</struts2.version>
29+
<struts2.version>2.5.26</struts2.version>
3030
<jackson.version>2.12.0</jackson.version>
3131
<junit.version>4.13.1</junit.version>
3232
<log4j.version>2.13.3</log4j.version>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-lambda-java-core</artifactId>
45-
<version>1.2.0</version>
45+
<version>1.2.1</version>
4646
</dependency>
4747

4848
<dependency>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>com.jgeppert.struts2</groupId>
7676
<artifactId>struts2-aws-lambda-support-plugin</artifactId>
77-
<version>1.1.0</version>
77+
<version>1.3.0</version>
7878
</dependency>
7979

8080
<!-- bean validation based on hibernate validators-->
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>com.amazonaws</groupId>
123123
<artifactId>aws-lambda-java-log4j2</artifactId>
124-
<version>1.1.0</version>
124+
<version>1.2.0</version>
125125
</dependency>
126126

127127
<dependency>

0 commit comments

Comments
 (0)