You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2015/11/05 17:17:12 UTC

[2/2] cxf git commit: Update to use a version of bcel that will work with java8

Update to use a version of bcel that will work with java8


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/308f4dcc
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/308f4dcc
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/308f4dcc

Branch: refs/heads/master
Commit: 308f4dcc7eb3df88b9a60678ce2c03cb0fb68b1c
Parents: 7fc957e
Author: Daniel Kulp <dk...@apache.org>
Authored: Thu Nov 5 11:16:41 2015 -0500
Committer: Daniel Kulp <dk...@apache.org>
Committed: Thu Nov 5 11:16:41 2015 -0500

----------------------------------------------------------------------
 systests/jibx/databinding-jibx/pom.xml |  7 +++++++
 systests/jibx/jaxrs-jibx/pom.xml       |  7 +++++++
 systests/pom.xml                       | 23 +----------------------
 3 files changed, 15 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/308f4dcc/systests/jibx/databinding-jibx/pom.xml
----------------------------------------------------------------------
diff --git a/systests/jibx/databinding-jibx/pom.xml b/systests/jibx/databinding-jibx/pom.xml
index d2a4152..3c67501 100644
--- a/systests/jibx/databinding-jibx/pom.xml
+++ b/systests/jibx/databinding-jibx/pom.xml
@@ -104,6 +104,13 @@
                 <groupId>org.jibx</groupId>
                 <artifactId>maven-jibx-plugin</artifactId>
                 <version>${cxf.jibx.version}</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.google.code.findbugs</groupId>
+                        <artifactId>bcel-findbugs</artifactId>
+                        <version>6.0</version>
+                    </dependency>
+                </dependencies>
                 <configuration>
                     <directory>target/generated/src/test/java/jibx_bindings</directory>
                     <!--load>true</load-->

http://git-wip-us.apache.org/repos/asf/cxf/blob/308f4dcc/systests/jibx/jaxrs-jibx/pom.xml
----------------------------------------------------------------------
diff --git a/systests/jibx/jaxrs-jibx/pom.xml b/systests/jibx/jaxrs-jibx/pom.xml
index 0b8a150..08c5e3e 100644
--- a/systests/jibx/jaxrs-jibx/pom.xml
+++ b/systests/jibx/jaxrs-jibx/pom.xml
@@ -251,6 +251,13 @@
                 <groupId>org.jibx</groupId>
                 <artifactId>jibx-maven-plugin</artifactId>
                 <version>${cxf.jibx.version}</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.google.code.findbugs</groupId>
+                        <artifactId>bcel-findbugs</artifactId>
+                        <version>6.0</version>
+                    </dependency>
+                </dependencies>
                 <executions>
                     <execution>
                         <id>generate-java-code-from-schema</id>

http://git-wip-us.apache.org/repos/asf/cxf/blob/308f4dcc/systests/pom.xml
----------------------------------------------------------------------
diff --git a/systests/pom.xml b/systests/pom.xml
index 8cc6e58..3dfade6 100644
--- a/systests/pom.xml
+++ b/systests/pom.xml
@@ -49,27 +49,6 @@
         <module>cdi</module>
         <module>rs-http-sci</module>
         <module>tracing</module>
+	<module>jibx</module>
     </modules>
-
-    <profiles>
-      <!-- jibx does support JDK8 -->
-      <profile>
-        <id>jdk-7</id>
-        <modules>
-          <module>jibx</module>
-        </modules>
-        <activation>
-          <jdk>1.7</jdk>
-        </activation>
-      </profile>
-      <profile>
-        <id>jdk-6</id>
-        <modules>
-          <module>jibx</module>
-        </modules>
-        <activation>
-          <jdk>1.6</jdk>
-        </activation>
-      </profile>
-    </profiles>
 </project>