You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2014/04/01 05:49:16 UTC

svn commit: r1583524 - /logging/log4j/log4j2/trunk/pom.xml

Author: ggregory
Date: Tue Apr  1 03:49:15 2014
New Revision: 1583524

URL: http://svn.apache.org/r1583524
Log:
Allows the CLI to skip some tests, for example: mvn test -Dlog4j.skip.test1=**/ConfigurationTest.java -Dlog4j.skip.test2=**/FileOutputTest.java

Modified:
    logging/log4j/log4j2/trunk/pom.xml

Modified: logging/log4j/log4j2/trunk/pom.xml
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/pom.xml?rev=1583524&r1=1583523&r2=1583524&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/pom.xml (original)
+++ logging/log4j/log4j2/trunk/pom.xml Tue Apr  1 03:49:15 2014
@@ -156,7 +156,7 @@
     <Log4jReleaseVersion>2.0-rc1</Log4jReleaseVersion>
     <Log4jReleaseCount>eleventh</Log4jReleaseCount>
     <jackson1.version>1.9.13</jackson1.version>
-    <jackson2.version>2.2.2</jackson2.version>
+    <jackson2.version>2.3.2</jackson2.version>
     <spring.version>3.2.8.RELEASE</spring.version>
     <flumeVersion>1.4.0</flumeVersion>
     <disruptor.version>3.2.0</disruptor.version>
@@ -680,6 +680,10 @@
             <java.awt.headless>true</java.awt.headless>
           </systemPropertyVariables>
           <forkMode>always</forkMode>
+          <excludes>
+            <exclude>${log4j.skip.test1}</exclude>
+            <exclude>${log4j.skip.test2}</exclude>
+          </excludes>
         </configuration>
       </plugin>
       <plugin>