Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to latest available Struts GA version 2.5.26 #395

Merged
merged 3 commits into from
Jul 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws-serverless-java-container-struts2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</parent>

<properties>
<struts2.version>2.5.22</struts2.version>
<struts2.version>2.5.26</struts2.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
import com.amazonaws.serverless.proxy.model.AwsProxyResponse;
import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestStreamHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.io.InputStream;
Expand All @@ -32,8 +30,6 @@
*/
public class Struts2LambdaHandler implements RequestStreamHandler {

private static final Logger log = LoggerFactory.getLogger(Struts2LambdaHandler.class);

private final Struts2LambdaContainerHandler<AwsProxyRequest, AwsProxyResponse> handler = Struts2LambdaContainerHandler
.getAwsProxyHandler();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<struts2.version>2.5.22</struts2.version>
<jackson.version>2.10.3</jackson.version>
<junit.version>4.12</junit.version>
<log4j.version>2.8.2</log4j.version>
<struts2.version>2.5.26</struts2.version>
<jackson.version>2.12.0</jackson.version>
<junit.version>4.13.1</junit.version>
<log4j.version>2.14.0</log4j.version>
</properties>

<dependencies>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-core</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -63,14 +63,14 @@
<dependency>
<groupId>com.jgeppert.struts2</groupId>
<artifactId>struts2-aws-lambda-support-plugin</artifactId>
<version>1.1.0</version>
<version>1.3.0</version>
</dependency>

<!-- bean validation based on hibernate validators-->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.3.2.Final</version>
<version>5.3.6.Final</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -110,7 +110,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-log4j2</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>

<dependency>
Expand Down