You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2018/03/07 05:45:13 UTC

logging-log4j2 git commit: Fix clirr plugin error

Repository: logging-log4j2
Updated Branches:
  refs/heads/release-2.x c625ad4e1 -> eb63ee959


Fix clirr plugin error


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/eb63ee95
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/eb63ee95
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/eb63ee95

Branch: refs/heads/release-2.x
Commit: eb63ee959c27568e871cd56a7e9cc886e783ab54
Parents: c625ad4
Author: rgoers <ra...@dslextreme.com>
Authored: Tue Mar 6 22:45:01 2018 -0700
Committer: rgoers <ra...@dslextreme.com>
Committed: Tue Mar 6 22:45:01 2018 -0700

----------------------------------------------------------------------
 pom.xml | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/eb63ee95/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9a99c5e..abb7f5a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -831,7 +831,7 @@
         <artifactId>de.flapdoodle.embed.mongo</artifactId>
         <version>2.0.3</version>
         <scope>test</scope>
-      </dependency>      
+      </dependency>
     </dependencies>
   </dependencyManagement>
   <build>
@@ -942,6 +942,13 @@
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>clirr-maven-plugin</artifactId>
           <version>${clirr.plugin.version}</version>
+          <dependencies>
+            <dependency>
+              <groupId>org.apache.bcel</groupId>
+              <artifactId>bcel</artifactId>
+              <version>6.2</version>
+            </dependency>
+          </dependencies>
           <configuration>
             <minSeverity>${minSeverity}</minSeverity>
           </configuration>
@@ -1216,6 +1223,21 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+        <version>${clirr.plugin.version}</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.bcel</groupId>
+            <artifactId>bcel</artifactId>
+            <version>6.2</version>
+          </dependency>
+        </dependencies>
+        <configuration>
+          <minSeverity>${minSeverity}</minSeverity>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <reporting>