Adds missing dependency
Project: http://git-wip-us.apache.org/repos/asf/struts-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-examples/commit/001dab2d Tree: http://git-wip-us.apache.org/repos/asf/struts-examples/tree/001dab2d Diff: http://git-wip-us.apache.org/repos/asf/struts-examples/diff/001dab2d Branch: refs/heads/master Commit: 001dab2d1a11ddbad8fd57ed3e9bf94216b42b23 Parents: cb7f546 Author: Lukasz Lenart <lukasz.len...@gmail.com> Authored: Tue Jul 19 07:23:31 2016 +0200 Committer: Lukasz Lenart <lukasz.len...@gmail.com> Committed: Tue Jul 19 07:23:31 2016 +0200 ---------------------------------------------------------------------- form-xml-validation/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts-examples/blob/001dab2d/form-xml-validation/pom.xml ---------------------------------------------------------------------- diff --git a/form-xml-validation/pom.xml b/form-xml-validation/pom.xml index 3bf391d..5954c26 100644 --- a/form-xml-validation/pom.xml +++ b/form-xml-validation/pom.xml @@ -16,6 +16,20 @@ <description>Form XML validation example application for the Struts 2 getting started tutorials</description> <packaging>war</packaging> + <dependencies> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> + <version>${log4j2.version}</version> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <version>1.7.12</version> + </dependency> + </dependencies> + <build> <finalName>form-xml-validation</finalName> <plugins>