GTNH's Forgelin
是 Shadowfacts' Forgelin 的 1.7.10 移植版。
本模组为 Forge 提供了一个 Kotlin 的语言适配器(Language Adapter),并且内置了 Kotlin 的标准库、反射库、协程库与运行时库。
借助这个模组,开发者可以不使用 MC 与 Forge 原生的开发语言 Java,而是用 Kotlin 来开发模组。
开发
repositories {
mavenCentral()
maven {
name = "jitpack"
url = "https://jitpack.io"
}
}
dependencies {
compile "com.github.GTNewHorizons:Forgelin:LATEST_VERSION"
}
在 Jitpack 可以看到 GTNH's Forgelin 的所有公开版本,链接。
注意:repositories 代码块内必须调用 mavenCentral(),MavenCentral 是用来寄存 Kotlin 的协程库的。