diff options
| author | bjculkin <bjculkin@localhost> | 2023-10-25 22:58:48 +0000 |
|---|---|---|
| committer | bjculkin <bjculkin@localhost> | 2023-10-25 22:58:48 +0000 |
| commit | d9dcc94aa16a1609e47f8369dfe21a8d260887a9 (patch) | |
| tree | 5dc80e9eb5bd6c0237998ed54e680553832bb1bd /base | |
| parent | e151e8490ed40231399618bf2dc4204c2ce99a82 (diff) | |
Tweak for new setup
Diffstat (limited to 'base')
| -rw-r--r-- | base/.classpath | 5 | ||||
| -rw-r--r-- | base/.settings/org.eclipse.jdt.core.prefs | 7 | ||||
| -rw-r--r-- | base/pom.xml | 6 |
3 files changed, 10 insertions, 8 deletions
diff --git a/base/.classpath b/base/.classpath index e9d3a7c..c80f1ca 100644 --- a/base/.classpath +++ b/base/.classpath @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="src" output="target/classes" path="src"> + <classpathentry including="**/*.java" kind="src" output="target/classes" path="src"> <attributes> <attribute name="optional" value="true"/> <attribute name="maven.pomderived" value="true"/> @@ -9,9 +9,10 @@ <classpathentry excluding="**" kind="src" output="target/classes" path="data"> <attributes> <attribute name="maven.pomderived" value="true"/> + <attribute name="optional" value="true"/> </attributes> </classpathentry> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"> <attributes> <attribute name="maven.pomderived" value="true"/> </attributes> diff --git a/base/.settings/org.eclipse.jdt.core.prefs b/base/.settings/org.eclipse.jdt.core.prefs index aeacc3c..2af1e7b 100644 --- a/base/.settings/org.eclipse.jdt.core.prefs +++ b/base/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,8 @@ eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore org.eclipse.jdt.core.compiler.release=disabled -org.eclipse.jdt.core.compiler.source=17 +org.eclipse.jdt.core.compiler.source=11 diff --git a/base/pom.xml b/base/pom.xml index 509847a..ab1c4f9 100644 --- a/base/pom.xml +++ b/base/pom.xml @@ -52,11 +52,11 @@ </plugin> --> <plugin> <artifactId>maven-compiler-plugin</artifactId> - <version>3.7.0</version> + <version>3.8.0</version> <configuration> - <source>1.17</source> - <target>1.17</target> + <source>11</source> + <target>11</target> </configuration> </plugin> <plugin> |
