You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2016/07/19 05:24:02 UTC

[2/3] struts-examples git commit: Adds missing dependency

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 <lu...@gmail.com>
Authored: Tue Jul 19 07:23:31 2016 +0200
Committer: Lukasz Lenart <lu...@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>