diff options
| author | bjculkin <bjculkin@localhost> | 2023-10-25 22:57:20 +0000 |
|---|---|---|
| committer | bjculkin <bjculkin@localhost> | 2023-10-25 22:57:20 +0000 |
| commit | f83040fbf50c4e38ea6584ff819dad8daad626e9 (patch) | |
| tree | a37a219884023189d74865345f9bf944300a4167 | |
| parent | 40ba262a26d3f6ead2d960c4ca58b2eac10fad3c (diff) | |
Tweak for new setup
| -rw-r--r-- | CSMath/.classpath | 4 | ||||
| -rw-r--r-- | CSMath/.settings/org.eclipse.jdt.core.prefs | 8 | ||||
| -rw-r--r-- | CSMath/pom.xml | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/CSMath/.classpath b/CSMath/.classpath index a0e398d..29d3daa 100644 --- a/CSMath/.classpath +++ b/CSMath/.classpath @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <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> </classpathentry> - <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"/> diff --git a/CSMath/.settings/org.eclipse.jdt.core.prefs b/CSMath/.settings/org.eclipse.jdt.core.prefs index 883da70..4cf9392 100644 --- a/CSMath/.settings/org.eclipse.jdt.core.prefs +++ b/CSMath/.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
@@ -11,5 +11,5 @@ org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled 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
\ No newline at end of file +org.eclipse.jdt.core.compiler.release=disabled
+org.eclipse.jdt.core.compiler.source=11
diff --git a/CSMath/pom.xml b/CSMath/pom.xml index e058025..577aad2 100644 --- a/CSMath/pom.xml +++ b/CSMath/pom.xml @@ -10,10 +10,10 @@ <plugins> <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> </plugins> @@ -25,4 +25,4 @@ <version>2.0-SNAPSHOT</version> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> |
