cleaned up build process

This commit is contained in:
kento2 2026-07-05 22:41:48 +02:00
parent e7ff5d3da2
commit 821ed43d7b
10 changed files with 142 additions and 182 deletions

View file

@ -1,32 +1,19 @@
plugins {
id("java")
id("maven-publish")
id("de.kentoj.scrow.scrow-repository")
id("de.kentoj.scrow.base-dependencies")
id("de.kentoj.scrow.java-library")
id("de.kentoj.scrow.database")
alias(libs.plugins.scrow.basedependencies)
alias(libs.plugins.scrow.javalibrary)
alias(libs.plugins.scrow.database)
}
group = "de.kentoj.scrow"
repositories {
mavenCentral()
maven {
name = "papermc"
url = uri("https://repo.papermc.io/repository/maven-public/")
}
}
dependencies {
api(project(":core-lib"))
// https://docs.papermc.io/velocity/dev/creating-your-first-plugin/
api("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
// http://forge.kentoj.de/scrow/-/packages/maven/de.kentoj.scrow:kencommandapi-core
api("de.kentoj.scrow:kencommandapi-core:0.30")
// http://forge.kentoj.de/scrow/-/packages/maven/de.kentoj.scrow:kencommandapi-velocity
api("de.kentoj.scrow:kencommandapi-velocity:0.30")
api(libs.velocity.api)
api(libs.scrow.commandapi.core)
api(libs.scrow.commandapi.velocity)
}
publishing {