mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-02-15 03:15:30 +01:00
Fixed versions
This commit is contained in:
parent
46a822743c
commit
d71dd1c6e7
@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'fabric-loom' version '1.6.11'
|
id 'fabric-loom' version '1.8.11'
|
||||||
}
|
}
|
||||||
|
|
||||||
archivesBaseName = "Dynmap"
|
archivesBaseName = "Dynmap"
|
||||||
@ -8,7 +8,7 @@ group = parent.group
|
|||||||
|
|
||||||
eclipse {
|
eclipse {
|
||||||
project {
|
project {
|
||||||
name = "Dynmap(Fabric-1.21)"
|
name = "Dynmap(Fabric-1.21.3)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,6 +36,9 @@ dependencies {
|
|||||||
|
|
||||||
modCompileOnly "me.lucko:fabric-permissions-api:0.1-SNAPSHOT"
|
modCompileOnly "me.lucko:fabric-permissions-api:0.1-SNAPSHOT"
|
||||||
compileOnly 'net.luckperms:api:5.4'
|
compileOnly 'net.luckperms:api:5.4'
|
||||||
|
|
||||||
|
//implementation 'org.xerial:sqlite-jdbc:3.30.1'
|
||||||
|
shadow group: 'org.xerial', name: 'sqlite-jdbc', version: '3.30.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
loom {
|
loom {
|
||||||
|
@ -793,4 +793,4 @@ public class DynmapPlugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -46,4 +46,4 @@ public class FabricLogger implements DynmapLogger {
|
|||||||
public void warning(String s, Throwable t) {
|
public void warning(String s, Throwable t) {
|
||||||
log.warn(DM + s, t);
|
log.warn(DM + s, t);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -18,4 +18,4 @@ public class CustomServerChunkEvents {
|
|||||||
public interface ChunkGenerate {
|
public interface ChunkGenerate {
|
||||||
void onChunkGenerate(ServerWorld world, Chunk chunk);
|
void onChunkGenerate(ServerWorld world, Chunk chunk);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -20,4 +20,4 @@ public class ServerChatEvents {
|
|||||||
public interface ServerChatCallback {
|
public interface ServerChatCallback {
|
||||||
void onChatMessage(ServerPlayerEntity player, String message);
|
void onChatMessage(ServerPlayerEntity player, String message);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -24,4 +24,4 @@ public abstract class ChunkGeneratingMixin {
|
|||||||
CustomServerChunkEvents.CHUNK_GENERATE.invoker().onChunkGenerate(chunkGenerationContext.world(), callbackInfoReturnable.getReturnValue());
|
CustomServerChunkEvents.CHUNK_GENERATE.invoker().onChunkGenerate(chunkGenerationContext.world(), callbackInfoReturnable.getReturnValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -28,4 +28,4 @@ public class ProtoChunkMixin implements ProtoChunkAccessor {
|
|||||||
public boolean getTouchedByWorldGen() {
|
public boolean getTouchedByWorldGen() {
|
||||||
return touchedByWorldGen;
|
return touchedByWorldGen;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -71,4 +71,4 @@ public abstract class ServerPlayNetworkHandlerMixin {
|
|||||||
// Cancel the original tryChangeText() since we're calling it ourselves above.
|
// Cancel the original tryChangeText() since we're calling it ourselves above.
|
||||||
ci.cancel();
|
ci.cancel();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -27,8 +27,8 @@
|
|||||||
"accessWidener" : "dynmap.accesswidener",
|
"accessWidener" : "dynmap.accesswidener",
|
||||||
|
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.15.11",
|
"fabricloader": ">=0.16.9",
|
||||||
"fabric": ">=0.98.0",
|
"fabric": ">=0.108.0",
|
||||||
"minecraft": ["1.21-rc.1", "1.21"]
|
"minecraft": ["1.21.3"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
Loading…
Reference in New Issue
Block a user