summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-01-31 19:59:49 -0500
committerBenjamin Culkin <scorpress@gmail.com>2024-01-31 19:59:49 -0500
commitbbc666edbaf425c568567e00a335f6a4feceef09 (patch)
tree04425f0fed39403bb66a7226d3e8d8e994a07e92
parent171c885a1bd4410637146cc43f22ddd9aef28e4f (diff)
Tweak things
-rw-r--r--JPratt/.gitignore1
-rw-r--r--JPratt/.settings/org.eclipse.jdt.core.prefs6
-rw-r--r--JPratt/pom.xml76
-rw-r--r--JPratt/src/main/java/module-info.java5
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 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>bjc</groupId>
+ <groupId>com.ashardalon</groupId>
<artifactId>JPratt</artifactId>
<version>0.0.2-SNAPSHOT</version>
<name>JPratt</name>
<description>Pratt parser in java</description>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
@@ -13,8 +16,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
- <source>1.17</source>
- <target>1.17</target>
+ <source>11</source>
+ <target>11</target>
</configuration>
</plugin>
<plugin>
@@ -27,13 +30,76 @@
</arguments>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.7.1</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav-jackrabbit</artifactId>
+ <version>3.5.3</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>3.0.0</version>
+ </plugin>
</plugins>
</build>
<dependencies>
<dependency>
- <groupId>bjc</groupId>
+ <groupId>com.ashardalon</groupId>
<artifactId>BJC-Utils2</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
-</project> \ No newline at end of file
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.4.0</version>
+ <configuration></configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.22.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-changes-plugin</artifactId>
+ <version>2.12.1</version>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <distributionManagement>
+ <site>
+ <id>ashardalon-dav</id>
+ <url>dav:https://ashardalon.com/projects/jpratt</url>
+ </site>
+ <snapshotRepository>
+ <id>ashardalon</id>
+ <name>Ashardalon Snapshots</name>
+ <url>https://repo.ashardalon.com/snapshots</url>
+ </snapshotRepository>
+ <repository>
+ <id>ashardalon</id>
+ <name>Ashardalon Releases</name>
+ <url>https://repo.ashardalon.com/releases</url>
+ </repository>
+ </distributionManagement>
+ <repositories>
+ <repository>
+ <id>ashardalon-forge</id>
+ <name>Ashardalon Forge</name>
+ <url>https://repo.ashardalon.com</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+</project>
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
+}