Hello, I'm not that experienced with Minecraft/Fabric modding but I thought I'd give updating this project a go to suit my server. However, I'm encountering an error when trying to build with Gradle:
gradlew build
> Configure project :
Fabric Loom: 0.10.66
:remapping minecraft (TinyRemapper, official -> named)
Loom is applying dependency data manually to publications instead of using a software component (from(components["java"])). This is deprecated and will be removed in Loom 0.12.
Deprecated Loom APIs were used in this build, making it incompatible with future versions of Loom. Use Gradle warning modes to control the verbosity of the warnings.
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'TickTock'.
> Could not resolve all dependencies for configuration ':minecraftLibraries'.
> io.netty:netty-transport-native-epoll:4.1.77.Final has more than one client module definitions.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 8s
I updated the fabric.mod.json to:
{
"schemaVersion": 1,
"id": "ticktock",
"version": "${version}",
"name": "TickTock",
"description": "Provide random ticks to all loaded chunks",
"authors": [
"Techdoodle"
],
"contact": {},
"license": "MIT",
"icon": "assets/ticktock/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"me.techchrism.ticktock.Ticktock"
]
},
"depends": {
"fabricloader": ">=0.10.1+build.209",
"fabric": "*",
"minecraft": "1.19"
},
"mixins": [
"ticktock.mixins.json"
],
"accessWidener": "ticktock.accesswidener"
}
...and gradle.properties to:
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.19
yarn_mappings=1.19+build.4
loader_version=0.14.8
# Mod Properties
mod_version=1.3.2
maven_group=me.techchrism
archives_base_name=ticktock
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.56.3+1.19
Any guidance would be appreciated! Perhaps a pull request could be made once it is solved?
Hello, I'm not that experienced with Minecraft/Fabric modding but I thought I'd give updating this project a go to suit my server. However, I'm encountering an error when trying to build with Gradle:
I updated the
fabric.mod.jsonto:...and
gradle.propertiesto:Any guidance would be appreciated! Perhaps a pull request could be made once it is solved?