Downloads

To develop your own code to use or implement JDO, you can use the links below to download Apache JDO from an official ASF download site. If you are using Maven, you can declare a dependency using the instructions below.

If you intend to develop JDO (make modifications to the JDO code), you should clone the public repository and submit pull requests if desired.

Please see instruction below for verifying the integrity of the distribution files after downloading any artifacts.

Maven (convenience binary)

The most convenient way to use JDO is to configure your project using Maven. The JDO API can be downloaded automatically by maven and placed into your local maven repository if you include the proper dependency in your maven project definition. For example:

<dependency>
  <groupId>javax.jdo</groupId>
  <artifactId>jdo-api</artifactId>
  <version>3.2.1</version>
</dependency>

Source Downloads

Release Notes Date Sources .tar.gz asc / sha Sources .zip asc / sha

3.2.1

2022-05-04

src.tar.gz (1.1 MB)

asc / sha512

src.zip (2.8 MB)

asc / sha512

3.2

2022-02-01

src.tar.gz (1.1 MB)

asc / sha512

src.zip (2.8 MB)

asc / sha512

3.1

2015-03-20

src.tar.gz (1.1 MB)

asc / sha1

src.zip (2.8 MB)

asc / sha1

3.0.1 TCK

2011-11-13

tck-src.zip

asc

tck-src.tar.gz

asc

3.0.1 API

2011-11-13

api-src.zip

asc

api-src.tar.gz

asc

About JDO Releases

A release of JDO includes the JDO API and the Technology Compatibility Kit (TCK). The TCK is available only in source form. The API project is available as source and as a jar file using the standard Maven dependency protocol.

  • The jdo-api.jar file is the only artifact needed for users who wish to compile their programs using the JDO API. It can be downloaded from maven, or it can be built manually from the source code.

  • The TCK project contains the JDO Technology Compatibility Kit.

The 3.0.1 release has separate downloads for API and TCK sources. Newer distributions have all code in in a single download.

Verifying Releases

It is essential that you verify the integrity of the downloaded files using the PGP signature.

The PGP signatures can be verified using PGP or GPG. First download the KEYS as well as the asc signature file for the particular distribution. Make sure you get these files from the Apache downbload area, rather than from a mirror. Then verify the signatures using these commands (depending on your tool set):

% pgpk -a KEYS
% pgpv release_artifact.asc
% pgp -ka KEYS
% pgp release_artifact.asc
% gpg --import KEYS
% gpg --verify release_artifact.asc