cleaned up build process
This commit is contained in:
parent
e7ff5d3da2
commit
821ed43d7b
10 changed files with 142 additions and 182 deletions
|
|
@ -1,36 +1,22 @@
|
|||
plugins {
|
||||
id("java")
|
||||
id("com.gradleup.shadow") version "9.2.0"
|
||||
id("xyz.jpenilla.run-paper") version "2.3.1"
|
||||
id("de.kentoj.scrow.scrow-repository")
|
||||
id("de.kentoj.scrow.base-dependencies")
|
||||
id("de.kentoj.scrow.database")
|
||||
alias(libs.plugins.runpaper)
|
||||
alias(libs.plugins.shadow)
|
||||
alias(libs.plugins.scrow.basedependencies)
|
||||
alias(libs.plugins.scrow.database)
|
||||
}
|
||||
|
||||
group = "de.kentoj.scrow"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
maven("https://repo.papermc.io/repository/maven-public/") {
|
||||
name = "papermc"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly("io.papermc.paper:paper-api:1.21.11-rc3-R0.1-SNAPSHOT")
|
||||
implementation(project(":core-bukkit-api"))
|
||||
compileOnly(libs.papermc.api)
|
||||
|
||||
// https://mvnrepository.com/artifact/org.mongodb/bson
|
||||
implementation("org.mongodb:bson:5.8.0")
|
||||
// https://mvnrepository.com/artifact/io.nats/jnats
|
||||
implementation("io.nats:jnats:2.25.2")
|
||||
// http://forge.kentoj.de/scrow/-/packages/maven/de.kentoj.scrow:kencommandapi-core
|
||||
implementation("de.kentoj.scrow:kencommandapi-core:0.30")
|
||||
// http://forge.kentoj.de/scrow/-/packages/maven/de.kentoj.scrow:kencommandapi-bukkit
|
||||
implementation("de.kentoj.scrow:kencommandapi-bukkit:0.30")
|
||||
// https://mvnrepository.com/artifact/org.postgresql/postgresql
|
||||
implementation("org.postgresql:postgresql:42.7.12")
|
||||
implementation(libs.bson)
|
||||
implementation(libs.nats)
|
||||
implementation(libs.scrow.commandapi.core)
|
||||
implementation(libs.scrow.commandapi.bukkit)
|
||||
implementation(libs.postgres)
|
||||
}
|
||||
|
||||
tasks {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue