diff --git a/build.gradle b/build.gradle index ffdaa2c..d955273 100644 --- a/build.gradle +++ b/build.gradle @@ -21,6 +21,10 @@ repositories { name = 'CottonMC' url = 'http://server.bbkr.space:8081/artifactory/libs-release' } + maven { + name = 'JitPack' + url = 'https://jitpack.io' + } } dependencies { @@ -39,10 +43,13 @@ dependencies { modImplementation "io.github.cottonmc:Jankson-Fabric:${project.jankson_version}" modImplementation "io.github.cottonmc:LibCD:${project.libcd_version}" - modImplementation "io.github.cottonmc:LibGui:${project.libgui_version}" + // modImplementation ("io.github.cottonmc:LibGui:${project.libgui_version}") modImplementation ("io.github.prospector:modmenu:${project.modmenu_version}"){ transitive = false } + modImplementation ("com.github.Siphalor:nbt-crafting:1.15-SNAPSHOT") { + transitive = false + } } processResources { diff --git a/gradle.properties b/gradle.properties index fef647a..2a2c788 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,23 +3,23 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # Check these on https://modmuss50.me/fabric.html - minecraft_version=1.15-pre3 - yarn_mappings=1.15-pre3+build.1:v2 + minecraft_version=1.15 + yarn_mappings=1.15+build.1:v2 loader_version=0.7.2+build.174 + fabric_version=0.4.23+build.276-1.15 loom_version=0.2.6-SNAPSHOT # Mod Properties - mod_version = 0.2.0 + mod_version = 0.3.0-alpha maven_group = net.fabricmc archives_base_name = paradox-config # Dependencies - fabric_version=0.4.17+build.270-1.15 - jankson_version=1.0.0+j1.1.2 - libcd_version=1.3.2+1.14.4 - libgui_version=1.3.2 - modmenu_version=1.7.15-unstable.1.15-pre1+build.13 + jankson_version=2.0.0+j1.2.0 + libcd_version=2.0.1+1.15 + libgui_version=1.3.3-beta.7 + modmenu_version=1.8.0.1.15-pre6+build.15 # Kotlin - kotlin_version=1.3.50 - fabric_kotlin_version=1.3.50+build.3 \ No newline at end of file + kotlin_version=1.3.60 + fabric_kotlin_version=1.3.60+build.1 \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 5004f8d..76f8247 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,16 +1,16 @@ { "schemaVersion": 1, "id": "pconfig", - "version": "1.0.0", + "version": "0.3.0-alpha", "name": "Paradox Config", - "description": "A Kotlin-based configuration mod for Minecraft.", + "description": "A Kotlin-based configuration api for Minecraft mods.", "authors": [ - "Me!" + "RedstoneParadox" ], "contact": { "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" + "sources": "https://github.com/RedstoneParadox/paradox-config" }, "license": "MIT",