changing BREE to JavaSE-11 and adapting compiler settings to avoid issues - for some early testing here

This commit is contained in:
Martin Lippert
2021-06-09 16:42:01 +02:00
parent c2e7360f46
commit 2f80745e5e
2 changed files with 10 additions and 3 deletions

View File

@@ -870,9 +870,16 @@
<configuration>
<encoding>UTF-8</encoding>
<useProjectSettings>false</useProjectSettings>
<compilerArgument>-err:-forbidden</compilerArgument>
<!-- <compilerArgument>-err:-forbidden</compilerArgument> -->
<compilerArgs>
<arg>-err:-forbidden</arg>
<arg>--add-modules</arg>
<arg>java.base,java.management,java.xml</arg>
<arg>--limit-modules</arg>
<arg>java.base,java.management,java.xml</arg>
</compilerArgs>
</configuration>
</plugin>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>