I am trying to learn hyperjaxb by studying this tutorial . I followed all the instructions up to the header section What was Generated?. This included the following steps:
1.) download the <a href="http://confluence.highsource.org/display/HJ3/Downloads">Basic Project Template for Hibernate and Maven</a>
2.) unzip the file
3.) install the xml and xsd files in the assigned locations
4.) open up `cmd.exe`
5.) navigate to the directory of the unzipped root folder
6.) run mvn clean install
But nothing was created. There is no catalog /generated-sources/xjc, and no PurchaseOrderType.java. I searched for keywords in the entire directory structure to confirm that these resources were not present after launch mvn clean install. I also imported directory structure into a new project and tried to eclipse maven run as...maven cleanand run as...maven buildthe new draft eclipse maven, but got the same lack of results.
What can I do to get this tutorial to create the intended generated files?
Also, is there a better way to create JPA objects from xsd?
EDIT:
@kapep mvn generate-sources :

mvn clean install :

, org.apache.maven.plugins:maven-compiler-plugin. .m2 , maven update project , . mvn clean install . , java , generated-sources. .
?
SECOND EDIT:
- , , mam-compiler-plugin pom :
<plugin>
<inherited>true</inherited>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
, source target 1.5 1.6, @Todd advice . , JDK. JDK 1.6. , - .
?