Repository: camel Updated Branches: refs/heads/master 3ea909391 -> c1390a40f
Fix camel-jpa on JDK9 GA Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c1390a40 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c1390a40 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c1390a40 Branch: refs/heads/master Commit: c1390a40f5aebd75b97ea5331daaa87d2824cae7 Parents: 3ea9093 Author: jpoth <poth.j...@gmail.com> Authored: Thu Sep 28 10:42:07 2017 +0200 Committer: jpoth <poth.j...@gmail.com> Committed: Thu Sep 28 12:44:59 2017 +0200 ---------------------------------------------------------------------- components/camel-jpa/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c1390a40/components/camel-jpa/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-jpa/pom.xml b/components/camel-jpa/pom.xml index b134ae7..0f5f8dc 100644 --- a/components/camel-jpa/pom.xml +++ b/components/camel-jpa/pom.xml @@ -263,6 +263,19 @@ </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.openjpa</groupId> + <artifactId>openjpa-persistence-jdbc</artifactId> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jpa_2.0_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> </profile> </profiles> </project>