Repository: cxf Updated Branches: refs/heads/3.1.x-fixes c4c03e06d -> f68a90ad7
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/a3e1065d Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a3e1065d Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a3e1065d Branch: refs/heads/3.1.x-fixes Commit: a3e1065d4c2a600f63585a6c892e636f5740cf73 Parents: c4c03e0 Author: Daniel Kulp <[email protected]> Authored: Thu Nov 5 11:16:41 2015 -0500 Committer: Daniel Kulp <[email protected]> Committed: Thu Nov 5 11:18:04 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/a3e1065d/systests/jibx/databinding-jibx/pom.xml ---------------------------------------------------------------------- diff --git a/systests/jibx/databinding-jibx/pom.xml b/systests/jibx/databinding-jibx/pom.xml index 0b3742e..fa59276 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/a3e1065d/systests/jibx/jaxrs-jibx/pom.xml ---------------------------------------------------------------------- diff --git a/systests/jibx/jaxrs-jibx/pom.xml b/systests/jibx/jaxrs-jibx/pom.xml index fd02011..6a8e585 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/a3e1065d/systests/pom.xml ---------------------------------------------------------------------- diff --git a/systests/pom.xml b/systests/pom.xml index 39c2a17..21e0e38 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>
