From 06d8140970661c3b05adedd76f3e09a131d9bee0 Mon Sep 17 00:00:00 2001 From: bjcul Date: Mon, 11 Jul 2022 18:07:56 -0400 Subject: Upgrade to Java 17 --- clformat/.classpath | 2 +- clformat/.settings/org.eclipse.jdt.core.prefs | 6 +++--- clformat/pom.xml | 12 ++++++------ clformat/src/main/java/module-info.java | 9 +++++++++ 4 files changed, 19 insertions(+), 10 deletions(-) create mode 100644 clformat/src/main/java/module-info.java (limited to 'clformat') diff --git a/clformat/.classpath b/clformat/.classpath index 2efb9ee..9dab56c 100644 --- a/clformat/.classpath +++ b/clformat/.classpath @@ -18,7 +18,7 @@ - + diff --git a/clformat/.settings/org.eclipse.jdt.core.prefs b/clformat/.settings/org.eclipse.jdt.core.prefs index 2529c98..74568b3 100644 --- a/clformat/.settings/org.eclipse.jdt.core.prefs +++ b/clformat/.settings/org.eclipse.jdt.core.prefs @@ -8,8 +8,8 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary= org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable org.eclipse.jdt.core.compiler.annotation.nullable.secondary= org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled -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.APILeak=warning org.eclipse.jdt.core.compiler.problem.annotatedTypeArgumentToUnannotated=info org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning @@ -106,4 +106,4 @@ org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=info org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning 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/clformat/pom.xml b/clformat/pom.xml index 4283850..5244694 100644 --- a/clformat/pom.xml +++ b/clformat/pom.xml @@ -6,7 +6,7 @@ BJCUtils-Parent bjc - 1.0.0 + 2.0-SNAPSHOT clformat @@ -28,17 +28,17 @@ bjc BJC-Utils2 - 1.0.0 + 2.0-SNAPSHOT bjc inflexion - 1.0.0 + 2.0-SNAPSHOT io.github.bculkin2442 esodata - 1.0-SNAPSHOT + 2.0-SNAPSHOT @@ -57,8 +57,8 @@ 3.7.0 - 1.8 - 1.8 + 1.17 + 1.17 diff --git a/clformat/src/main/java/module-info.java b/clformat/src/main/java/module-info.java new file mode 100644 index 0000000..286a26c --- /dev/null +++ b/clformat/src/main/java/module-info.java @@ -0,0 +1,9 @@ +module clformat { + exports bjc.utils.ioutils.format.directives; + exports bjc.utils.ioutils.format; + exports bjc.utils.ioutils.format.exceptions; + + requires bjc.utils; + requires esodata; + requires inflexion; +} \ No newline at end of file -- cgit v1.2.3