plugins { kotlin("jvm") id("com.github.johnrengelman.shadow") } group = "cc.maxmc.msm.child" repositories { mavenCentral() maven("https://repo.papermc.io/repository/maven-public/") } dependencies { implementation(kotlin("stdlib")) implementation(project(":api")) implementation(project(":common")) implementation("io.netty:netty-all:4.1.90.Final") @Suppress("VulnerableLibrariesLocal") implementation("io.github.waterfallmc:waterfall-api:1.19-R0.1-SNAPSHOT") } tasks.shadowJar { relocate("kotlin", "cc.maxmc.msm.lib.kotlin") } tasks.build { dependsOn(tasks.shadowJar) }