Hey ! :wave: I released version 1.17.0 of <Kore> t...
# feed
a
Hey ! 👋 I released version 1.17.0 of Kore that can now generate Jar files ! You can now create datapacks that can be used as mods for
fabric
,
forge
,
neoforge
and
quilt
mod-loaders ! Example :
Copy code
kotlin
val myDataPack = dataPack("my_datapack") {
    // ...
}

myDataPack.generateJar {
    fabric {
        author("Ayfri")

        contact {
            homepage = "<https://kore.ayfri.com>"
            sources = "<https://github.com/Ayfri/Kore>"
        }

        version = "1.2.5"
    }

    // Other mod-loaders...
}
Check out the documentation on this feature here : https://github.com/Ayfri/Kore/wiki/creating-a-datapack#jar-generation The next release should be focused on updating Kore to 1.21.2 👌 Do not forget to star the project
⛏️ 1