Repository: camel Updated Branches: refs/heads/master 304ccf3d8 -> 91590cbed
CAMEL-9693 : camel-infinispan : disable building tests on JDK < 1.8 Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/91590cbe Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/91590cbe Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/91590cbe Branch: refs/heads/master Commit: 91590cbedcf88af444b02e993ed2da575d922504 Parents: 304ccf3 Author: lburgazzoli <[email protected]> Authored: Thu Mar 10 11:56:00 2016 +0100 Committer: Claus Ibsen <[email protected]> Committed: Thu Mar 10 12:45:08 2016 +0100 ---------------------------------------------------------------------- components/camel-infinispan/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/91590cbe/components/camel-infinispan/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-infinispan/pom.xml b/components/camel-infinispan/pom.xml index e5147d6..32d8a8b 100644 --- a/components/camel-infinispan/pom.xml +++ b/components/camel-infinispan/pom.xml @@ -138,6 +138,21 @@ <skipTests>true</skipTests> </configuration> </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <executions> + <execution> + <id>default-testCompile</id> + <phase>test-compile</phase> + <goals> + <goal>testCompile</goal> + </goals> + <configuration> + <skip>true</skip> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </profile>
