This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-examples.git
commit c6e9a627cfcea68875064c354f5400168cac3576 Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Thu Jun 9 14:58:51 2022 +0200 Cleans up pom and uses missing Log4j to Slf4j bridge --- tiles/pom.xml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/tiles/pom.xml b/tiles/pom.xml index a3dd4e0..e6e87d6 100644 --- a/tiles/pom.xml +++ b/tiles/pom.xml @@ -26,6 +26,12 @@ <version>${struts2.version}</version> </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> + <version>${log4j2.version}</version> + </dependency> + <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-junit-plugin</artifactId> @@ -42,22 +48,22 @@ <dependency> <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.5</version> + <artifactId>javax.servlet-api</artifactId> + <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> - <groupId>javax.servlet</groupId> - <artifactId>jsp-api</artifactId> - <version>2.0</version> + <groupId>org.glassfish</groupId> + <artifactId>javax.el</artifactId> + <version>3.0.1-b12</version> <scope>provided</scope> </dependency> <dependency> - <groupId>javax.el</groupId> - <artifactId>el-api</artifactId> - <version>2.2</version> + <groupId>org.glassfish</groupId> + <artifactId>javax.servlet.jsp</artifactId> + <version>3.1.1</version> <scope>provided</scope> </dependency>