You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by sd...@apache.org on 2017/04/17 07:35:11 UTC

[1/2] struts-examples git commit: changed deprecated ${artifactId} to ${project.artifactId}

Repository: struts-examples
Updated Branches:
  refs/heads/master 4b3878d73 -> c785bc559


changed deprecated ${artifactId} to ${project.artifactId}


Project: http://git-wip-us.apache.org/repos/asf/struts-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts-examples/commit/08834c5d
Tree: http://git-wip-us.apache.org/repos/asf/struts-examples/tree/08834c5d
Diff: http://git-wip-us.apache.org/repos/asf/struts-examples/diff/08834c5d

Branch: refs/heads/master
Commit: 08834c5dae4be91c87684641809ae52ae2f933e7
Parents: 4b3878d
Author: Stefaan Dutry <st...@gmail.com>
Authored: Mon Apr 17 09:06:10 2017 +0200
Committer: Stefaan Dutry <st...@gmail.com>
Committed: Mon Apr 17 09:06:10 2017 +0200

----------------------------------------------------------------------
 basic-struts/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts-examples/blob/08834c5d/basic-struts/pom.xml
----------------------------------------------------------------------
diff --git a/basic-struts/pom.xml b/basic-struts/pom.xml
index 8743cf3..80665aa 100644
--- a/basic-struts/pom.xml
+++ b/basic-struts/pom.xml
@@ -23,7 +23,7 @@
                 <version>8.1.16.v20140903</version>
                 <configuration>
                     <webApp>
-                        <contextPath>/${artifactId}</contextPath>
+                        <contextPath>/${project.artifactId}</contextPath>
                     </webApp>
                     <stopKey>CTRL+C</stopKey>
                     <stopPort>8999</stopPort>


[2/2] struts-examples git commit: added missing log4j2 dependency

Posted by sd...@apache.org.
added missing log4j2 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/c785bc55
Tree: http://git-wip-us.apache.org/repos/asf/struts-examples/tree/c785bc55
Diff: http://git-wip-us.apache.org/repos/asf/struts-examples/diff/c785bc55

Branch: refs/heads/master
Commit: c785bc559904c72830333d23cf6eb478a857176c
Parents: 08834c5
Author: Stefaan Dutry <st...@gmail.com>
Authored: Mon Apr 17 09:24:48 2017 +0200
Committer: Stefaan Dutry <st...@gmail.com>
Committed: Mon Apr 17 09:24:48 2017 +0200

----------------------------------------------------------------------
 pom.xml | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts-examples/blob/c785bc55/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 43b8926..16778d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,6 +41,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <struts2.version>2.5.11-SNAPSHOT</struts2.version>
+        <log4j2.version>2.8.2</log4j2.version>
     </properties>
 
     <modules>
@@ -91,8 +92,24 @@
             <version>${struts2.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-core</artifactId>
+            <version>${log4j2.version}</version>
+        </dependency>
+
     </dependencies>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.logging.log4j</groupId>
+                <artifactId>log4j-api</artifactId>
+                <version>${log4j2.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <build>
 
         <plugins>
@@ -141,4 +158,4 @@
         </repository>
     </repositories>
 
-</project>
\ No newline at end of file
+</project>