diff --git a/DynmapCore/build.gradle b/DynmapCore/build.gradle index beb60e22..6cf50de6 100644 --- a/DynmapCore/build.gradle +++ b/DynmapCore/build.gradle @@ -13,12 +13,12 @@ sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = co dependencies { implementation project(':DynmapCoreAPI') implementation 'javax.servlet:javax.servlet-api:3.1.0' - implementation'org.eclipse.jetty:jetty-server:9.4.26.v20200117' + implementation'org.eclipse.jetty:jetty-server:9.4.58.v20250814' implementation 'org.eclipse.jetty:jetty-servlet:9.4.26.v20200117' implementation 'com.googlecode.json-simple:json-simple:1.1.1' implementation 'org.yaml:snakeyaml:1.23' // DON'T UPDATE - NEWER ONE TRIPS ON WINDOWS ENCODED FILES implementation 'com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20180219.1' - implementation 'org.postgresql:postgresql:42.7.11' + implementation 'org.postgresql:postgresql:42.2.18' implementation 'io.github.linktosriram.s3lite:core:0.0.2-SNAPSHOT' implementation 'io.github.linktosriram.s3lite:api:0.0.2-SNAPSHOT' implementation 'io.github.linktosriram.s3lite:http-client-url-connection:0.0.2-SNAPSHOT' diff --git a/README.md b/README.md index 640ac88b..e1bd7b8a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Dynmap® - dynamic web maps for Minecraft servers +> **About this fork.** This repository tracks [Dynmap](https://github.com/webbukkit/dynmap) +> with an added **NeoForge 1.21.1** build. The `main` branch mirrors the upstream +> multi-platform project (Spigot/Paper, Forge, Fabric, and the original README below); +> the **`neoforge-1.21.1`** branch holds the standalone NeoForge 1.21.1 port and its own +> build/install instructions. For the canonical project, see +> [webbukkit/dynmap](https://github.com/webbukkit/dynmap). + + # Jump around the README * [How to build](#how-to-build) * [What platforms are supported?](#what-platforms-are-supported) diff --git a/bukkit-helper-118/build.gradle b/bukkit-helper-118/build.gradle index f7093a23..0e5baa45 100644 --- a/bukkit-helper-118/build.gradle +++ b/bukkit-helper-118/build.gradle @@ -12,6 +12,6 @@ dependencies { implementation project(':bukkit-helper') implementation project(':dynmap-api') implementation project(path: ':DynmapCore', configuration: 'shadow') - compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.18-R0.1-SNAPSHOT' + compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.18-rc3-R0.1-SNAPSHOT' compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.18-R0.1-SNAPSHOT' } diff --git a/bukkit-helper-120-2/build.gradle b/bukkit-helper-120-2/build.gradle index 6cca6f43..5ba3115b 100644 --- a/bukkit-helper-120-2/build.gradle +++ b/bukkit-helper-120-2/build.gradle @@ -12,6 +12,6 @@ dependencies { implementation project(':bukkit-helper') implementation project(':dynmap-api') implementation project(path: ':DynmapCore', configuration: 'shadow') - compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20.2-R0.1-SNAPSHOT' + compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20.2-experimental-SNAPSHOT' compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.20.2-R0.1-SNAPSHOT' } diff --git a/bukkit-helper-120-4/build.gradle b/bukkit-helper-120-4/build.gradle index 33dc9cf4..3afd340f 100644 --- a/bukkit-helper-120-4/build.gradle +++ b/bukkit-helper-120-4/build.gradle @@ -12,6 +12,6 @@ dependencies { implementation project(':bukkit-helper') implementation project(':dynmap-api') implementation project(path: ':DynmapCore', configuration: 'shadow') - compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20.4-R0.1-SNAPSHOT' + compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20.4-experimental-SNAPSHOT' compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.20.4-R0.1-SNAPSHOT' } diff --git a/bukkit-helper-120-5/build.gradle b/bukkit-helper-120-5/build.gradle index 15448e08..aa461c3f 100644 --- a/bukkit-helper-120-5/build.gradle +++ b/bukkit-helper-120-5/build.gradle @@ -12,6 +12,6 @@ dependencies { implementation project(':bukkit-helper') implementation project(':dynmap-api') implementation project(path: ':DynmapCore', configuration: 'shadow') - compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20.4-R0.1-SNAPSHOT' + compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.20.4-experimental-SNAPSHOT' compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.20.5-R0.1-SNAPSHOT' } diff --git a/bukkit-helper-121-11/build.gradle b/bukkit-helper-121-11/build.gradle index 5a8ccc1f..df6746ce 100644 --- a/bukkit-helper-121-11/build.gradle +++ b/bukkit-helper-121-11/build.gradle @@ -12,7 +12,7 @@ dependencies { implementation project(':bukkit-helper') implementation project(':dynmap-api') implementation project(path: ':DynmapCore', configuration: 'shadow') - compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.11-R0.1-SNAPSHOT' + compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.11-R0.2-SNAPSHOT' compileOnly ('org.spigotmc:spigot:1.21.11-R0.1-SNAPSHOT') { exclude group: "com.mojang", module: "jtracy" } diff --git a/forge-1.12.2/build.gradle b/forge-1.12.2/build.gradle index 04157af6..b0d66b0a 100644 --- a/forge-1.12.2/build.gradle +++ b/forge-1.12.2/build.gradle @@ -25,12 +25,12 @@ eclipse { dependencies { implementation 'javax.servlet:javax.servlet-api:3.1.0' - implementation'org.eclipse.jetty:jetty-server:9.4.26.v20200117' + implementation'org.eclipse.jetty:jetty-server:9.4.58.v20250814' implementation 'org.eclipse.jetty:jetty-servlet:9.4.26.v20200117' implementation 'com.googlecode.json-simple:json-simple:1.1.1' implementation 'org.yaml:snakeyaml:1.23' // DON'T UPDATE - NEWER ONE TRIPS ON WINDOWS ENCODED FILES implementation 'com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20180219.1' - implementation 'org.postgresql:postgresql:42.7.11' + implementation 'org.postgresql:postgresql:42.2.18' implementation 'io.github.linktosriram.s3lite:core:0.0.2-SNAPSHOT' implementation 'io.github.linktosriram.s3lite:api:0.0.2-SNAPSHOT' implementation 'io.github.linktosriram.s3lite:http-client-url-connection:0.0.2-SNAPSHOT'