Json定义实体模型
Go to file
3944Realms 409573cd4e 1. 添加了远程Maven仓库,如何使用见 README.MD
2. 修复了Forge Server端加载本模组会导致非法的类加载错误
3. 更改了版本命名,现在是 jsonem-模组加载器端-mc版本-模组版本
2025-11-22 15:32:52 +08:00
common 修改第十部分 2025-06-06 20:13:58 +08:00
fabric 1. 添加了远程Maven仓库,如何使用见 README.MD 2025-11-22 15:32:52 +08:00
forge 1. 添加了远程Maven仓库,如何使用见 README.MD 2025-11-22 15:32:52 +08:00
gradle/wrapper Init 2025-05-24 21:16:43 +08:00
.gitignore Init 2025-05-24 21:16:43 +08:00
build.gradle 1. 添加了远程Maven仓库,如何使用见 README.MD 2025-11-22 15:32:52 +08:00
gradle.properties 1. 添加了远程Maven仓库,如何使用见 README.MD 2025-11-22 15:32:52 +08:00
LICENSE.txt Init 2025-05-24 21:16:43 +08:00
README.MD 1. 添加了远程Maven仓库,如何使用见 README.MD 2025-11-22 15:32:52 +08:00
settings.gradle 修改第部分 2025-06-05 03:26:15 +08:00

JsonEM (Json Entity Models)

Port from JsonEM

Support Forge Mod Loader (Recommended FML Version is 1.20.1-47.4.1)

For Developer

You can integrate and automatically download JsonEM for your mod project using Gradle.
Just add the following to your build script (build.gradle):

Repositories

repositories {
    maven {
        name = "LTD Maven"
        url = "https://nexus.bot.leisuretimedock.top/repository/maven-public/"
    }
}

Forge

dependencies {
    implementation fg.deobf("com.leisuretimedock:jsonem-forge-${minecraft_version}:${jsonem_version})"
}

Fabric And Quilt

dependencies {
  modImplementation "com.leisuretimedock:jsonem-fabric-${minecraft_version}:${jsonem_version}"
}

Choose a Version

${mc_version} gets replaced by the current Minecraft version. (i.e. 1.20.1)
${jsonem_version} gets replaced by the version of JEI you want to use (i.e 0.2.4)

License

MIT