You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2018/06/23 12:56:36 UTC

[maven-project-info-reports-plugin] branch master updated: [MPIR-370] Upgrade transitive BCEL to 6.2 to avoid org.apache.bcel.classfile.ClassFormatException

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new b8e7175  [MPIR-370] Upgrade transitive BCEL to 6.2 to avoid org.apache.bcel.classfile.ClassFormatException
b8e7175 is described below

commit b8e717557e66adec3bc22813794d8295bfb453fc
Author: Peter Lamby <Pe...@direkt-gruppe.de>
AuthorDate: Wed Jun 20 19:49:11 2018 +0200

    [MPIR-370] Upgrade transitive BCEL to 6.2 to avoid org.apache.bcel.classfile.ClassFormatException
    
    This closes #6
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index 5a5bee2..7a4f8b4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -185,6 +185,17 @@ under the License.
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-shared-jar</artifactId>
       <version>1.2</version>
+      <exclusions><!-- Replace problematic BCEL version until MSHARED JAR has been updated -->
+        <exclusion>
+          <groupId>com.google.code.findbugs</groupId>
+          <artifactId>bcel-findbugs</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.bcel</groupId>
+      <artifactId>bcel</artifactId>
+      <version>6.2</version>
     </dependency>
 
     <dependency>