Specify JDK for maven based Project
Many times, we encounter the jdk version problems in maven based project. For convenient, I took down this note and facilitate the following dev/test works.
Before we set the jdk version, make sure you have installed JAVA&MAVEN and configured the JAVA_HOME M2_HOME successfully.
In maven pom.xml, add pugin configuration as shown below. Then It will ensure that your particular project uses that version of jdk.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>