From bbc666edbaf425c568567e00a335f6a4feceef09 Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Wed, 31 Jan 2024 19:59:49 -0500 Subject: Tweak things --- JPratt/.gitignore | 1 + JPratt/.settings/org.eclipse.jdt.core.prefs | 6 +-- JPratt/pom.xml | 76 +++++++++++++++++++++++++++-- JPratt/src/main/java/module-info.java | 5 +- 4 files changed, 77 insertions(+), 11 deletions(-) diff --git a/JPratt/.gitignore b/JPratt/.gitignore index 3f4e69e..1a92f2e 100644 --- a/JPratt/.gitignore +++ b/JPratt/.gitignore @@ -1,3 +1,4 @@ /bin/ /target/ HTML/ +.settings/ diff --git a/JPratt/.settings/org.eclipse.jdt.core.prefs b/JPratt/.settings/org.eclipse.jdt.core.prefs index 40089f4..4303d9a 100644 --- a/JPratt/.settings/org.eclipse.jdt.core.prefs +++ b/JPratt/.settings/org.eclipse.jdt.core.prefs @@ -9,8 +9,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=17 -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.APILeak=warning org.eclipse.jdt.core.compiler.problem.annotatedTypeArgumentToUnannotated=info org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning @@ -107,4 +107,4 @@ org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore 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=17 +org.eclipse.jdt.core.compiler.source=11 diff --git a/JPratt/pom.xml b/JPratt/pom.xml index 8f1a92c..78865f3 100644 --- a/JPratt/pom.xml +++ b/JPratt/pom.xml @@ -1,11 +1,14 @@ 4.0.0 - bjc + com.ashardalon JPratt 0.0.2-SNAPSHOT JPratt Pratt parser in java + + UTF-8 + src/main/java @@ -13,8 +16,8 @@ maven-compiler-plugin 3.5.1 - 1.17 - 1.17 + 11 + 11 @@ -27,13 +30,76 @@ + + maven-site-plugin + 3.7.1 + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 3.5.3 + + + + + + maven-project-info-reports-plugin + 3.0.0 + - bjc + com.ashardalon BJC-Utils2 2.0-SNAPSHOT - \ No newline at end of file + + + + maven-javadoc-plugin + 3.4.0 + + + + maven-surefire-plugin + 2.22.1 + + + maven-changes-plugin + 2.12.1 + + + + + + + ashardalon-dav + dav:https://ashardalon.com/projects/jpratt + + + ashardalon + Ashardalon Snapshots + https://repo.ashardalon.com/snapshots + + + ashardalon + Ashardalon Releases + https://repo.ashardalon.com/releases + + + + + ashardalon-forge + Ashardalon Forge + https://repo.ashardalon.com + + true + + + true + + + + diff --git a/JPratt/src/main/java/module-info.java b/JPratt/src/main/java/module-info.java index 8bed9b1..87dcbf7 100644 --- a/JPratt/src/main/java/module-info.java +++ b/JPratt/src/main/java/module-info.java @@ -5,8 +5,7 @@ module jpratt { exports bjc.pratt.commands.impls; exports bjc.pratt; exports bjc.pratt.parsing; - - requires bjc.utils; requires esodata; + requires bjc.utils; requires junit; -} \ No newline at end of file +} -- cgit v1.2.3