{excerpt:hidden=true}How to obtain OpenJPA{excerpt} OpenJPA official releases can be downloaded at the [Downloads] page. Released binaries can also by accessed from Maven pom.xml files by pointing them to the repository at http://people.apache.org/repo/m2-incubating-repository . An example pom.xml that will use the 0.9.0-incubating release is as follows: {code:xml} 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 {code} Also, there is a snapshot repository set up for maven located at [http://people.apache.org/repo/m2-snapshot-repository/org/apache/openjpa/] 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: {note:title=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 {note} {code:xml} 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 {code}