diff options
Diffstat (limited to 'clformat')
| -rw-r--r-- | clformat/.classpath | 2 | ||||
| -rw-r--r-- | clformat/.settings/org.eclipse.jdt.core.prefs | 6 | ||||
| -rw-r--r-- | clformat/pom.xml | 12 | ||||
| -rw-r--r-- | clformat/src/main/java/module-info.java | 9 |
4 files changed, 19 insertions, 10 deletions
diff --git a/clformat/.classpath b/clformat/.classpath index 2efb9ee..9dab56c 100644 --- a/clformat/.classpath +++ b/clformat/.classpath @@ -18,7 +18,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-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/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 @@ <parent> <artifactId>BJCUtils-Parent</artifactId> <groupId>bjc</groupId> - <version>1.0.0</version> + <version>2.0-SNAPSHOT</version> </parent> <artifactId>clformat</artifactId> @@ -28,17 +28,17 @@ <dependency> <groupId>bjc</groupId> <artifactId>BJC-Utils2</artifactId> - <version>1.0.0</version> + <version>2.0-SNAPSHOT</version> </dependency> <dependency> <groupId>bjc</groupId> <artifactId>inflexion</artifactId> - <version>1.0.0</version> + <version>2.0-SNAPSHOT</version> </dependency> <dependency> <groupId>io.github.bculkin2442</groupId> <artifactId>esodata</artifactId> - <version>1.0-SNAPSHOT</version> + <version>2.0-SNAPSHOT</version> </dependency> </dependencies> <build> @@ -57,8 +57,8 @@ <version>3.7.0</version> <configuration> - <source>1.8</source> - <target>1.8</target> + <source>1.17</source> + <target>1.17</target> </configuration> </plugin> <plugin> 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 |
