9
0
mirror of https://github.com/Auxilor/EcoMenus.git synced 2026-01-06 15:51:34 +00:00
Files
EcoMenus/eco-core/core-plugin/build.gradle.kts
2023-06-03 19:19:57 +01:00

28 lines
623 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<MavenPublication>("maven") {
groupId = project.group.toString()
version = project.version.toString()
artifactId = rootProject.name
artifact(rootProject.tasks.shadowJar.get().archiveFile)
}
}
}
tasks {
build {
dependsOn(publishToMavenLocal)
}
}