h1. Running the OpenJPA Examples The examples are packaged so that they run after extracting the openjpa binary distribution. Running directly from the source tree may take some work (not documented here). # Build the openjpa binaries {code} $ mvn clean install {code} # extract the binary distribution to a temporary directory {code} $ cd openjpa-project/target/site/downloads/ $ unzip -qq -d temp *binary*.zip $ cd temp/$openjpa-version/examples {code} # run the helloJPA sample {code} $ cd hellojpa $ ant $ cd .. {code} # run the relations sample {code} $ cd relations $ ant $ cd .. {code} # run the reversemapping sample {note} Currently only works on unix platforms {note} {code} $ cd reversemapping $ ant $ cd .. {code}