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

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

Author: mattsicker
Date: Sun Apr  6 02:58:04 2014
New Revision: 1585234

URL: http://svn.apache.org/r1585234
Log:
Migrate to annotation processor.

  - Commented out old method of pre-processing annotations.

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

Modified: logging/log4j/log4j2/trunk/log4j-core/pom.xml
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/pom.xml?rev=1585234&r1=1585233&r2=1585234&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/log4j-core/pom.xml (original)
+++ logging/log4j/log4j2/trunk/log4j-core/pom.xml Sun Apr  6 02:58:04 2014
@@ -38,6 +38,11 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-api</artifactId>
     </dependency>
+    <!-- Used for pre-caching the standard plugins -->
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-plugin-processor</artifactId>
+    </dependency>
     <!-- Used for OSGi bundle support -->
     <dependency>
       <groupId>org.osgi</groupId>
@@ -226,6 +231,8 @@
           </execution>
         </executions>
       </plugin>
+      <!-- TODO: verify this is no longer required -->
+      <!--
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>exec-maven-plugin</artifactId>
@@ -245,6 +252,7 @@
           </arguments>
         </configuration>
       </plugin>
+      -->
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
@@ -415,6 +423,7 @@
         <reportSets>
           <reportSet>
             <!-- Disabled as it makes the site build very slow and causes the performance unit test to fail -->
+            <!-- TODO: convert this report plugin into a release profile and disable relevant unit tests -->
             <reports />
           </reportSet>
         </reportSets>