Title: Obtaining OpenJPA official releases can be downloaded at the [Downloads](downloads.html) page. Released binaries can also by accessed from Maven pom.xml files by pointing them to the repository at . An example pom.xml that will use the 0.9.0-incubating release is as follows: 4.0.0 some-project some-project jar My Project 1.0.0 central http://www.ibiblio.org/maven2 apache-snapshots http://people.apache.org/repo/m2-incubating-repository org.apache.openjpa openjpa-all 0.9.6-incubating Also, there is a snapshot repository set up for maven located at where development snapshot jars will be stored. Maven projects can be configured to depend on the openjpa snapshots by setting up their pom.xml as follows: ---- > **Update Version** > >In the example below replace 0.9.8-SNAPSHOT with the version you wish to use. Ex. 1.2.0, or 1.3.0-SNAPSHOT ---- 4.0.0 some-project some-project jar My Project 1.0.0 central http://www.ibiblio.org/maven2 apache-snapshots http://people.apache.org/repo/m2-snapshot-repository org.apache.openjpa openjpa-all 0.9.8-incubating-SNAPSHOT