update openjpa

This commit is contained in:
Peter Hormanns 2020-05-26 19:39:26 +02:00
parent b54c63ab1f
commit b4763cfa0e
19 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@
<mkdir dir="${build.home}" /> <mkdir dir="${build.home}" />
<mkdir dir="${build.home}/cls" /> <mkdir dir="${build.home}/cls" />
<javac srcdir="${src.home}" destdir="${build.home}/cls" <javac srcdir="${src.home}" destdir="${build.home}/cls"
source="1.6" target="1.6" source="1.8" target="1.8"
debug="${compile.debug}" deprecation="${compile.deprecation}" debug="${compile.debug}" deprecation="${compile.deprecation}"
optimize="${compile.optimize}" encoding="UTF8" includeantruntime="false"> optimize="${compile.optimize}" encoding="UTF8" includeantruntime="false">
<classpath refid="compile.classpath" /> <classpath refid="compile.classpath" />
@ -101,7 +101,7 @@
<mkdir dir="${build.home}/test" /> <mkdir dir="${build.home}/test" />
<javac <javac
srcdir="${test.home}" destdir="${build.home}/test" srcdir="${test.home}" destdir="${build.home}/test"
source="1.6" target="1.6" source="1.8" target="1.8"
debug="${compile.debug}" deprecation="${compile.deprecation}" debug="${compile.debug}" deprecation="${compile.deprecation}"
optimize="${compile.optimize}" encoding="UTF8" includeantruntime="false"> optimize="${compile.optimize}" encoding="UTF8" includeantruntime="false">
<classpath refid="compile.classpath" /> <classpath refid="compile.classpath" />

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -9,6 +9,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.TreeSet; import java.util.TreeSet;
import javax.annotation.processing.SupportedSourceVersion;
import javax.persistence.EntityManager; import javax.persistence.EntityManager;
import javax.persistence.Query; import javax.persistence.Query;
import javax.servlet.ServletException; import javax.servlet.ServletException;
@ -137,7 +138,6 @@ public class JsonPillarServlet extends HttpServlet {
} }
writer.println(" \"domain\": \"" + domName + "\""); writer.println(" \"domain\": \"" + domName + "\"");
writer.println(" , \"opts\": {"); writer.println(" , \"opts\": {");
writer.println(" \"letsencrypt\": \"" + domainOpts.get("letsencrypt").toString().toLowerCase() + "\"");
firstLoop = true; firstLoop = true;
for (final SelectableValue val : domainOptionValues.get()) { for (final SelectableValue val : domainOptionValues.get()) {
if (firstLoop) { if (firstLoop) {