Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added link to nightly builds

Excerpt
hiddentrue

Downloads for the OpenJPA project

OpenJPA Downloads

Use the links below to download a distribution of Apache OpenJPA. It is good practice to verify the integrity of the distribution files.

For information on obtaining OpenJPA binaries, see the Obtaining page. For information on building OpenJPA from source, see the Building OpenJPA page.

Official Releases

1.2.x Releases

...

 

Download

Release Date

Signatures

Release Notes

OpenJPA 1.2.0

...

14 Aug 2008

PGP

Release Notes

OpenJPA 1.2.0

...

Source

...

Code

...

...

14 Aug 2008

PGP

 

1.1.x

...

Releases

 

Download

Release Date

Signatures

Release Notes

OpenJPA 1.1.0

...

...

22 May 2008

PGP

Release Notes

OpenJPA 1.1.0

...

Source

...

Code

...

...

22 May 2008

PGP

 

1.0.x Releases

 

Download

Release Date

Signatures

Release Notes

OpenJPA 1.0.3

...

...

25 Jul 2008

PGP

Release Notes

OpenJPA 1.0.3

...

Source

...

Code

...

...

25 Jul 2008

PGP

 

OpenJPA 1.0.2

...

...

18 Feb 2008

PGP

Release Notes

OpenJPA 1.0.2

...

Source

...

Code

...

...

18 Feb 2008

PGP

 

OpenJPA 1.0.1

...

...

9 Nov 2007

PGP

Release Notes

OpenJPA 1.0.1

...

Source

...

Code

...

...

9 Nov 2007

PGP

 

OpenJPA 1.0.0

...

...

28 Aug 2007

PGP

Release Notes

OpenJPA 1.0.0

...

Source

...

Code

...

...

28 Au 2007

PGP

 

Older incubating Releases

 

Download

Release Date

Signatures

OpenJPA 0.9.7

...

...

27 April 2007

MD5 PGP

OpenJPA 0.9.7

...

Source

...

Code

...

...

27 April 2007

MD5 PGP

OpenJPA 0.9.6

...

...

29 November 2006

MD5 PGP

OpenJPA 0.9.6

...

Source

...

Code

...

...

29 November 2006

MD5 PGP

Nightly Snapshots

These distributions are built and deployed nightly, and contain up-to-date

...

fixes

...

and

...

improvements.

...

However,

...

their

...

stability

...

cannot

...

be

...

guaranteed.

...

Use

...

at

...

your

...

own

...

risk.

...

Nightly build Source Code

apache-openjpa-1.3.0-SNAPSHOT-source.zip

OpenJPA jar is self-describing and after downloading a nightly snapshot, you can find out the latest revision number included in the build by

Code Block
none
none
titleDetermining Revision number included in a particular build
 |http://openjpa.apache.org/builds/1.3.0-SNAPSHOT/downloads/apache-openjpa-1.3.0-SNAPSHOT-source.zip] |[PGP|http://openjpa.apache.org/builds/1.3.0-SNAPSHOT/downloads/apache-openjpa-1.3.0-SNAPSHOT-source.zip.asc]

OpenJPA jar is self-describing and after downloading a nightly snapshot, you can find out the latest revision number included in the build by
{code:none|title=Determining Revision number included in a particular build}
% java -jar you/path/to/openjpa.jar | grep revision
{code}

will

...

print

...

the

...

revision

...

numbers,

...

for

...

example,

...

as

Code Block
none
none

{code:none}
Apache svn revision: 422266:686421
{code}

which

...

designates

...

that

...

the

...

nightly

...

build

...

includes

...

Apache

...

SVN

...

revision

...

686421

...

as

...

the

...

latest.

Verifying Releases

We strongly recommend you verify the integrity of the downloaded files with both PGP and MD5. 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 main distribution directory, rather than from a mirror. Then verify the signatures using one of the following sets of commands:

Code Block
none
none
titleVerifying Release Files using the pgpk Utility


{HTMLcomment}

h2. Verifying Releases

We strongly recommend you verify the integrity of the downloaded files with both PGP and MD5. The PGP signatures can be verified using [PGP|http://www.pgpi.org/] or [GPG|http://www.gnupg.org/]. First download the [KEYS|http://apache.org/dist/openjpa/KEYS] as well as the {{*.asc}} signature file for the particular distribution. Make sure you get these files from the main distribution directory, rather than from a mirror. Then verify the signatures using one of the following sets of commands:

{code:none|title=Verifying Release Files using the pgpk Utility}% pgpk -a KEYS
% pgpv openjpa-*.zip.asc
{code}
Code Block
none
none
titleVerifying Release Files using the pgp Utility



{code:none|title=Verifying Release Files using the pgp Utility}% pgp -ka KEYS
% pgp openjpa-*.zip.asc
{code}

{code:none|title
Code Block
none
none
titleVerifying Release Files using the gpg Utility

=Verifying Release Files using the gpg Utility}% gpg --import KEYS
% gpg --verify openjpa-*.zip.asc
{code}

Alternatively,

...

you

...

can

...

verify

...

the

...

checksums

...

on

...

the

...

files.

...

Unix

...

programs

...

called

...

md5

...

/

...

sha1

...

or

...

md5sum

...

/

...

sha1sum

...

are

...

included

...

in

...

many

...

unix

...

distributions.

...

*sum

...

is

...

also

...

available

...

as

...

part

...

of

...

GNU

...

Textutils

...

.

...

Windows

...

users

...

can

...

get

...

binary

...

md5

...

programs

...

from

...

here

...

or

...

here

...

.

...

fsum

...

supports

...

MD5

...

and

...

SHA1.

...