27 lines
710 B
Plaintext
27 lines
710 B
Plaintext
plugins {
|
|
`maven-publish`
|
|
// id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":api"))
|
|
compileOnly("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT")
|
|
api("org.reflections:reflections:0.10.2")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.34")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.34")
|
|
}
|
|
|
|
tasks {
|
|
jar {
|
|
archiveFileName.set("${rootProject.name}-${project.name}.jar")
|
|
}
|
|
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
filesMatching("plugin.yml") {
|
|
expand(Pair("version", rootProject.version))
|
|
}
|
|
}
|
|
} |