24 lines
468 B
Plaintext
24 lines
468 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
group = "cc.maxmc.msm.api"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
@Suppress("VulnerableLibrariesLocal")
|
|
compileOnly("io.github.waterfallmc:waterfall-api:1.19-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
val release by getting(MavenPublication::class) {
|
|
artifact(tasks.jar)
|
|
}
|
|
}
|
|
} |