Repository: sentry Updated Branches: refs/heads/sentry-ha-redesign 91168c623 -> 6d8214e70
SENTRY-1507: Sentry should use Datanucleus version of javax.jdo (Alexander Kolbasov, Reviewed by: Hao Hao, Li Li and Colm O hEigeartaigh) Change-Id: Ie272a88e9741044e151cdd2cd847bc939d47c633 Project: http://git-wip-us.apache.org/repos/asf/sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/sentry/commit/6d8214e7 Tree: http://git-wip-us.apache.org/repos/asf/sentry/tree/6d8214e7 Diff: http://git-wip-us.apache.org/repos/asf/sentry/diff/6d8214e7 Branch: refs/heads/sentry-ha-redesign Commit: 6d8214e70476ba6cb2e09aef6cf47eb24a2316bf Parents: 91168c6 Author: hahao <[email protected]> Authored: Sun Jan 22 23:05:03 2017 -0800 Committer: hahao <[email protected]> Committed: Sun Jan 22 23:05:03 2017 -0800 ---------------------------------------------------------------------- sentry-provider/sentry-provider-db/pom.xml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sentry/blob/6d8214e7/sentry-provider/sentry-provider-db/pom.xml ---------------------------------------------------------------------- diff --git a/sentry-provider/sentry-provider-db/pom.xml b/sentry-provider/sentry-provider-db/pom.xml index d504a88..54cc026 100644 --- a/sentry-provider/sentry-provider-db/pom.xml +++ b/sentry-provider/sentry-provider-db/pom.xml @@ -161,8 +161,9 @@ limitations under the License. <scope>test</scope> </dependency> <dependency> - <groupId>javax.jdo</groupId> - <artifactId>jdo-api</artifactId> + <groupId>org.datanucleus</groupId> + <artifactId>javax.jdo</artifactId> + <version>3.2.0-m3</version> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> @@ -358,6 +359,11 @@ limitations under the License. <artifactId>datanucleus-rdbms</artifactId> <version>${datanucleus-rdbms.version}</version> </dependency> + <dependency> + <groupId>org.datanucleus</groupId> + <artifactId>javax.jdo</artifactId> + <version>3.2.0-m3</version> + </dependency> </dependencies> </profile> <profile> @@ -390,7 +396,7 @@ limitations under the License. <dependency> <groupId>org.datanucleus</groupId> <artifactId>javax.jdo</artifactId> - <version>${datanucleus-jdo.version}</version> + <version>3.2.0-m3</version> </dependency> </dependencies> </profile>
