diff options
| author | bjculkin <bjculkin@localhost> | 2023-10-25 23:01:49 +0000 |
|---|---|---|
| committer | bjculkin <bjculkin@localhost> | 2023-10-25 23:01:49 +0000 |
| commit | d1a9375fe818617151bbe23809ff4f45d3775e75 (patch) | |
| tree | 8a4441dd8ef9c3f36d43b748d19c6ae7c8de010b | |
| parent | ec3452f282f7f9f17e078467a4a9a8588028d6b9 (diff) | |
Tweak for new setup
| -rw-r--r-- | firmal/.classpath | 15 | ||||
| -rw-r--r-- | firmal/.settings/org.eclipse.jdt.core.prefs | 6 | ||||
| -rw-r--r-- | firmal/pom.xml | 6 |
3 files changed, 20 insertions, 7 deletions
diff --git a/firmal/.classpath b/firmal/.classpath index 5e577b9..8ec68a3 100644 --- a/firmal/.classpath +++ b/firmal/.classpath @@ -13,7 +13,7 @@ <attribute name="test" 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> @@ -23,5 +23,18 @@ <attribute name="maven.pomderived" value="true"/> </attributes> </classpathentry> + <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + <attribute name="optional" 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/firmal/.settings/org.eclipse.jdt.core.prefs b/firmal/.settings/org.eclipse.jdt.core.prefs index 62544f6..da3b103 100644 --- a/firmal/.settings/org.eclipse.jdt.core.prefs +++ b/firmal/.settings/org.eclipse.jdt.core.prefs @@ -1,8 +1,8 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate @@ -12,4 +12,4 @@ org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 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/firmal/pom.xml b/firmal/pom.xml index 1b2aae5..5174a1a 100644 --- a/firmal/pom.xml +++ b/firmal/pom.xml @@ -20,10 +20,10 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> - <source>1.17</source> - <target>1.17</target> + <source>11</source> + <target>11</target> </configuration> </plugin> </plugins> </build> -</project>
\ No newline at end of file +</project> |
