diff options
| author | bjculkin <bjculkin@localhost> | 2023-10-25 23:01:08 +0000 |
|---|---|---|
| committer | bjculkin <bjculkin@localhost> | 2023-10-25 23:01:08 +0000 |
| commit | cd28fe1f4dc59e646b390414f9d61b3b9a440e9d (patch) | |
| tree | d9dbbca61470e561c1a12778f86fe5e44fb5f7e1 | |
| parent | e491562b9cd364374cefaba62622ed029944843c (diff) | |
Tweak for new setup
| -rw-r--r-- | .classpath | 10 | ||||
| -rw-r--r-- | .settings/org.eclipse.jdt.core.prefs | 6 | ||||
| -rw-r--r-- | pom.xml | 4 |
3 files changed, 14 insertions, 6 deletions
@@ -9,6 +9,7 @@ <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="src" output="target/test-classes" path="src/test/java"> @@ -18,7 +19,7 @@ <attribute name="maven.pomderived" 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> @@ -28,5 +29,12 @@ <attribute name="maven.pomderived" value="true"/> </attributes> </classpathentry> + <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + <attribute name="test" value="true"/> + <attribute name="optional" value="true"/> + </attributes> + </classpathentry> <classpathentry kind="output" path="target/classes"/> </classpath> diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index cf2cd45..2af1e7b 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,8 +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 @@ -25,8 +25,8 @@ </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <maven.compiler.source>1.17</maven.compiler.source> - <maven.compiler.target>1.17</maven.compiler.target> + <maven.compiler.source>11</maven.compiler.source> + <maven.compiler.target>11</maven.compiler.target> <!-- github server corresponds to entry in ~/.m2/settings.xml --> <github.global.server>github</github.global.server> <jacoco.reportPath>${main.basedir}/target/jacoco-ut.exec</jacoco.reportPath> |
