Skip to content

Commit 1f17d06

Browse files
committed
chore(deps): updated some struts dependency (although currently not released)
1 parent 357a79e commit 1f17d06

File tree

5 files changed

+18
-28
lines changed

5 files changed

+18
-28
lines changed

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

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
</parent>
1616

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

2121
<dependencies>
2222
<!-- Core interfaces for the aws-serverless-java-container project -->
2323
<dependency>
2424
<groupId>com.amazonaws.serverless</groupId>
2525
<artifactId>aws-serverless-java-container-core</artifactId>
26-
<version>2.0.0</version>
26+
<version>2.1.0-SNAPSHOT</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.amazonaws.serverless</groupId>
3030
<artifactId>aws-serverless-java-container-core</artifactId>
31-
<version>2.0.0</version>
31+
<version>2.1.0-SNAPSHOT</version>
3232
<classifier>tests</classifier>
3333
<type>test-jar</type>
3434
<scope>test</scope>
@@ -100,16 +100,6 @@
100100
</dependency>
101101
</dependencies>
102102

103-
<dependencyManagement>
104-
<dependencies>
105-
<dependency>
106-
<groupId>org.apache.commons</groupId>
107-
<artifactId>commons-text</artifactId>
108-
<version>1.11.0</version>
109-
</dependency>
110-
</dependencies>
111-
</dependencyManagement>
112-
113103
<build>
114104
<plugins>
115105
<plugin>

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

Lines changed: 6 additions & 6 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-M3') {
21+
implementation ('org.apache.struts:struts2-convention-plugin:7.0.0-M8') {
2222
exclude group: 'org.apache.struts', module: 'struts2-core'
2323
}
24-
implementation ('org.apache.struts:struts2-rest-plugin:7.0.0-M3') {
24+
implementation ('org.apache.struts:struts2-rest-plugin:7.0.0-M8') {
2525
exclude group: 'org.apache.struts', module: 'struts2-core'
2626
}
27-
implementation ('org.apache.struts:struts2-bean-validation-plugin:7.0.0-M3') {
27+
implementation ('org.apache.struts:struts2-bean-validation-plugin:7.0.0-M8') {
2828
exclude group: 'org.apache.struts', module: 'struts2-core'
2929
}
30-
implementation ('com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.4.2') {
30+
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-M3') {
33+
implementation ('org.apache.struts:struts2-core:7.0.0-M8') {
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.2.1")
4646
testImplementation(platform("org.junit:junit-bom:5.10.3"))
4747
testImplementation("org.junit.jupiter:junit-jupiter")
48-
testImplementation('org.apache.struts:struts2-junit-plugin:7.0.0-M3') {
48+
testImplementation('org.apache.struts:struts2-junit-plugin:7.0.0-M8') {
4949
exclude group: 'org.apache.struts', module: 'struts2-core'
5050
}
5151
}

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

Lines changed: 2 additions & 2 deletions
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-M3</struts.version>
18+
<struts.version>7.0.0-M8</struts.version>
1919
<jackson.version>2.17.2</jackson.version>
2020
<junit.version>5.10.3</junit.version>
2121
<log4j.version>2.23.1</log4j.version>
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>com.jgeppert.struts2</groupId>
7373
<artifactId>struts2-aws-lambda-support-plugin</artifactId>
74-
<version>1.4.2</version>
74+
<version>1.4.3</version>
7575
</dependency>
7676

7777
<!-- bean validation based on hibernate validators-->

samples/struts/pet-store/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ configurations {
1414
dependencies {
1515
implementation (
1616
'com.amazonaws.serverless:aws-serverless-java-container-struts:[2.0-SNAPSHOT,)',
17-
'org.apache.struts:struts2-convention-plugin:7.0.0-M3',
18-
'org.apache.struts:struts2-rest-plugin:7.0.0-M3',
19-
'org.apache.struts:struts2-bean-validation-plugin:7.0.0-M3',
20-
'org.apache.struts:struts2-junit-plugin:7.0.0-M3',
21-
'com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.4.2',
17+
'org.apache.struts:struts2-convention-plugin:7.0.0-M8',
18+
'org.apache.struts:struts2-rest-plugin:7.0.0-M8',
19+
'org.apache.struts:struts2-bean-validation-plugin:7.0.0-M8',
20+
'org.apache.struts:struts2-junit-plugin:7.0.0-M8',
21+
'com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.4.3',
2222
'org.hibernate.validator:hibernate-validator:6.1.7.Final',
2323
'org.glassfish:jakarta.el:5.0.0-M1',
2424
'jakarta.el:jakarta.el-api:5.0.1',

samples/struts/pet-store/pom.xml

Lines changed: 2 additions & 2 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-
<struts.version>7.0.0-M3</struts.version>
29+
<struts.version>7.0.0-M8</struts.version>
3030
<jackson.version>2.17.2</jackson.version>
3131
<junit.version>4.13.2</junit.version>
3232
<log4j.version>2.23.1</log4j.version>
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>com.jgeppert.struts2</groupId>
7070
<artifactId>struts2-aws-lambda-support-plugin</artifactId>
71-
<version>1.4.2</version>
71+
<version>1.4.3</version>
7272
</dependency>
7373

7474
<!-- bean validation based on hibernate validators-->

0 commit comments

Comments
 (0)