diff --git a/common/build.gradle b/common/build.gradle index 753a087..a31271f 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -6,9 +6,6 @@ dependencies { modApi "dev.architectury:architectury:${rootProject.architectury_version}" modApi "me.shedaniel.cloth:cloth-config-fabric:11.0.99" - - implementation 'org.json:json:20230227' - include 'org.json:json:20230227' } architectury { diff --git a/common/src/main/resources/pack.mcmeta b/common/src/main/resources/pack.mcmeta index d6ca302..a66d0b8 100644 --- a/common/src/main/resources/pack.mcmeta +++ b/common/src/main/resources/pack.mcmeta @@ -1,5 +1,7 @@ { "pack": { - "pack_format": 15 + "pack_format": 15, + "description": "speedometer resources", + "forge:server_data_pack_format": 12 } } \ No newline at end of file diff --git a/fabric/build.gradle b/fabric/build.gradle index 4f2c5f6..9825a42 100644 --- a/fabric/build.gradle +++ b/fabric/build.gradle @@ -31,9 +31,6 @@ dependencies { common(project(path: ":common", configuration: "namedElements")) { transitive false } shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false } - - implementation 'org.json:json:20230227' - include 'org.json:json:20230227' } processResources { diff --git a/forge/build.gradle b/forge/build.gradle index 37ecc52..8cab03e 100644 --- a/forge/build.gradle +++ b/forge/build.gradle @@ -27,10 +27,6 @@ dependencies { common(project(path: ":common", configuration: "namedElements")) { transitive false } shadowCommon(project(path: ":common", configuration: "transformProductionForge")) { transitive = false } - - implementation 'org.json:json:20230227' - include 'org.json:json:20230227' - forgeRuntimeLibrary 'org.json:json:20230227' } processResources { diff --git a/forge/src/main/resources/pack.mcmeta b/forge/src/main/resources/pack.mcmeta deleted file mode 100644 index ac21974..0000000 --- a/forge/src/main/resources/pack.mcmeta +++ /dev/null @@ -1,7 +0,0 @@ -{ - "pack": { - "description": "speedometer resources", - "pack_format": 13, - "forge:server_data_pack_format": 12 - } -}