mirror of
https://github.com/Auxilor/EcoQuests.git
synced 2025-12-19 15:09:22 +00:00
24 lines
501 B
Plaintext
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)
|
|
}
|
|
}
|