mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-22 15:05:18 +01:00
28 lines
571 B
Plaintext
28 lines
571 B
Plaintext
group = "com.willfp"
|
|
version = rootProject.version
|
|
|
|
dependencies {
|
|
compileOnly(fileTree("../../lib") {
|
|
include("*.jar")
|
|
}
|
|
)
|
|
compileOnly(project(":eco-core:core-proxy"))
|
|
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
|
|
compileOnly("net.essentialsx:EssentialsX:2.19.7")
|
|
compileOnly("commons-lang:commons-lang:2.6")
|
|
}
|
|
|
|
tasks {
|
|
build {
|
|
dependsOn("publishToMavenLocal")
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("mavenJava") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|