mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-01 07:26:09 +00:00
* Bukkit Build Fix (#494) * Bukkit Build Fix * remove comments * remove papermc repo from gradle settings * add back gradle shasum * fix formatting, update gradle hash * Initial Fabric 1.21.5 * Updated dependencies * Updated SpawnerData with backwards compat * Updated dependencies * Updated setBlockState usage - needs verifying as flags are confusing * Refactored Bukkit NMS packages * Initial attempt at updating mixin-commons * Continue fabric 1.21.5 WIP * Some additional logging * Update deps * Build fixes and update allay * Add oak to authors --------- Co-authored-by: Mikal <Ifiht@users.noreply.github.com> Co-authored-by: OakLoaf <oak@beaconstudios.org>
26 lines
792 B
Plaintext
26 lines
792 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("jvm") version embeddedKotlinVersion
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven("https://repo.codemc.org/repository/maven-public") {
|
|
name = "CodeMC"
|
|
}
|
|
maven("https://repo.papermc.io/repository/maven-public/") {
|
|
name = "PaperMC"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
//TODO Allow pulling from Versions.kt
|
|
implementation("com.gradleup.shadow", "shadow-gradle-plugin", "8.3.6")
|
|
|
|
implementation("io.papermc.paperweight.userdev", "io.papermc.paperweight.userdev.gradle.plugin", "2.0.0-beta.17")
|
|
implementation("org.ow2.asm", "asm", "9.8")
|
|
implementation("org.ow2.asm", "asm-tree", "9.8")
|
|
implementation("com.dfsek.tectonic", "common", "4.2.1")
|
|
implementation("org.yaml", "snakeyaml", "2.4")
|
|
} |