Repository: sentry Updated Branches: refs/heads/master 62bdcbfe9 -> d44e67027
SENTRY-1507: Sentry should use Datanucleus version of javax.jdo (Alexander Kolbasov, Reviewed by: Hao Hao, Li Li and Colm O hEigeartaigh) Change-Id: I35058d9a98f67d4d01c7518d5d48324c9b32395b Project: http://git-wip-us.apache.org/repos/asf/sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/sentry/commit/d44e6702 Tree: http://git-wip-us.apache.org/repos/asf/sentry/tree/d44e6702 Diff: http://git-wip-us.apache.org/repos/asf/sentry/diff/d44e6702 Branch: refs/heads/master Commit: d44e6702751ec2b316d16498a646c51a07065d8f Parents: 62bdcbf Author: hahao <[email protected]> Authored: Thu Jan 19 16:45:47 2017 -0800 Committer: hahao <[email protected]> Committed: Thu Jan 19 16:45:47 2017 -0800 ---------------------------------------------------------------------- sentry-service/sentry-service-server/pom.xml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sentry/blob/d44e6702/sentry-service/sentry-service-server/pom.xml ---------------------------------------------------------------------- diff --git a/sentry-service/sentry-service-server/pom.xml b/sentry-service/sentry-service-server/pom.xml index ff4cdb1..e8098be 100644 --- a/sentry-service/sentry-service-server/pom.xml +++ b/sentry-service/sentry-service-server/pom.xml @@ -81,8 +81,9 @@ limitations under the License. <artifactId>jackson-mapper-asl</artifactId> </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> @@ -254,6 +255,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>
