summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2022-07-17 22:39:33 -0400
committerBen Culkin <scorpress@gmail.com>2022-07-17 22:39:33 -0400
commite4d172ef2c675b21dae797d3976dcb9b45f3d55f (patch)
tree52b455e1e11079208bff63e1e7136582cd55a0a7
parent81f07e5af0a7229f63e6f85c51fdb58c1f107c43 (diff)
Update to java 17
-rw-r--r--JPratt/.classpath2
-rw-r--r--JPratt/.settings/org.eclipse.jdt.core.prefs6
-rw-r--r--JPratt/pom.xml8
3 files changed, 8 insertions, 8 deletions
diff --git a/JPratt/.classpath b/JPratt/.classpath
index c196e7d..929a07e 100644
--- a/JPratt/.classpath
+++ b/JPratt/.classpath
@@ -7,7 +7,7 @@
</attributes>
</classpathentry>
<classpathentry kind="src" path="src/examples/java"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
diff --git a/JPratt/.settings/org.eclipse.jdt.core.prefs b/JPratt/.settings/org.eclipse.jdt.core.prefs
index 2f5cc74..cf2cd45 100644
--- a/JPratt/.settings/org.eclipse.jdt.core.prefs
+++ b/JPratt/.settings/org.eclipse.jdt.core.prefs
@@ -1,8 +1,8 @@
eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
-org.eclipse.jdt.core.compiler.compliance=1.8
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
+org.eclipse.jdt.core.compiler.compliance=17
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=1.8
+org.eclipse.jdt.core.compiler.source=17
diff --git a/JPratt/pom.xml b/JPratt/pom.xml
index ec70958..8f1a92c 100644
--- a/JPratt/pom.xml
+++ b/JPratt/pom.xml
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>bjc</groupId>
<artifactId>JPratt</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>0.0.2-SNAPSHOT</version>
<name>JPratt</name>
<description>Pratt parser in java</description>
<build>
@@ -13,8 +13,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <source>1.17</source>
+ <target>1.17</target>
</configuration>
</plugin>
<plugin>
@@ -33,7 +33,7 @@
<dependency>
<groupId>bjc</groupId>
<artifactId>BJC-Utils2</artifactId>
- <version>1.0.0</version>
+ <version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project> \ No newline at end of file