Add JDK version notes. Fixes #560

This commit is contained in:
James 2017-02-15 05:58:41 -05:00
parent 7ea7bd45cf
commit 7ee3e75665
2 changed files with 25 additions and 2 deletions

View File

@ -177,8 +177,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<!--
This project is built to 1.8 since our public
server runs on a 1.8 JDK. If you are using this
project as a basis for your own work, you could
probably safely reduce this if needed
-->
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings

View File

@ -81,6 +81,23 @@
</answer>
</faq>
</part>
<part id="Using HAPI">
<title>Using HAPI</title>
<faq id="jdk_version">
<question>
What JDK version does HAPI support?
</question>
<answer>
<p>
HAPI supports JDK 1.6 for the entire library, except for the CLI tool which is 1.8.
</p>
<p>
Note that the HAPI library itself also requires a 1.8 JDK to build, since the unit tests
have JDK 1.8 dependencies.
</p>
</answer>
</faq>
</part>
<part id="JPA Server">
<title>JPA Server</title>
<faq id="access_underlying_derby_database">