9
0
mirror of https://github.com/Auxilor/EcoQuests.git synced 2025-12-19 15:09:22 +00:00
Files
EcoQuests/eco-core/core-plugin/build.gradle.kts
2023-08-08 19:27:34 +01:00

24 lines
501 B
Plaintext

group = "com.willfp"
version = rootProject.version
dependencies {
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
compileOnly("com.github.ben-manes.caffeine:caffeine:3.0.5")
implementation("com.willfp:ecomponent:1.4.1")
}
publishing {
publications {
register("maven", MavenPublication::class) {
from(components["java"])
artifactId = rootProject.name
}
}
}
tasks {
build {
dependsOn(publishToMavenLocal)
}
}