Update build script

This commit is contained in:
Ryder Belserion 2024-03-05 18:57:10 -05:00
parent 6413bcefd8
commit 54c07b7de9
No known key found for this signature in database
5 changed files with 32 additions and 13 deletions

13
common/build.gradle.kts Normal file
View File

@ -0,0 +1,13 @@
plugins {
id("root-plugin")
}
dependencies {
compileOnlyApi(libs.bundles.adventure)
compileOnly(libs.cluster.api)
api(libs.configme) {
exclude(group = "org.yaml", module = "snakeyaml")
}
}

View File

@ -8,7 +8,7 @@ website = https://modrinth.com/plugin/crazyauctions
sources = https://github.com/Crazy-Crew/CrazyAuctions
issues = https://github.com/Crazy-Crew/CrazyAuctions/issues
group = com.badbones69.crazyauctions
group = com.ryderbelserion.crazyauctions
description = Auction off items in style.
version = 1.3.3
apiVersion = 1.20

View File

@ -3,6 +3,8 @@ plugins {
}
dependencies {
implementation(project(":common"))
implementation(libs.metrics)
compileOnly(libs.vault) {

View File

@ -1,5 +1,5 @@
#Minecraft server properties
#Tue Mar 05 12:14:28 EST 2024
#Tue Mar 05 18:52:30 EST 2024
enable-jmx-monitoring=false
rcon.port=25575
level-seed=

View File

@ -17,32 +17,36 @@ dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("adventure4", "4.16.0")
version("cluster", "6.3")
version("cloud", "1.8.4")
library("holographicdisplays", "me.filoghost.holographicdisplays", "holographicdisplays-api").version("3.0.0")
library("decentholograms", "com.github.decentsoftware-eu", "decentholograms").version("2.8.6")
library("triumphcmds", "dev.triumphteam", "triumph-cmd-bukkit").version("2.0.0-SNAPSHOT")
library("triumphgui", "dev.triumphteam", "triumph-gui").version("3.1.7")
library("cluster_paper", "com.ryderbelserion.cluster", "paper").versionRef("cluster")
library("cluster_api", "com.ryderbelserion.cluster", "paper").versionRef("cluster")
library("cloud_core", "cloud.commandframework", "cloud-core").versionRef("cloud")
library("cloud_brig", "cloud.commandframework", "cloud-brigadier").versionRef("cloud")
library("cloud_paper", "cloud.commandframework", "cloud-paper").versionRef("cloud")
library("cloud_extras", "cloud.commandframework", "cloud-minecraft-extras").versionRef("cloud")
library("adventure4", "net.kyori", "adventure-text-minimessage").versionRef("adventure4")
library("minimessage4", "net.kyori", "adventure-api").versionRef("adventure4")
library("itemsadder", "com.github.LoneDev6", "api-itemsadder").version("3.6.1")
library("placeholderapi", "me.clip", "placeholderapi").version("2.11.5")
library("triumphgui", "dev.triumphteam", "triumph-gui").version("3.1.7")
library("metrics", "org.bstats", "bstats-bukkit").version("3.0.2")
library("nbtapi", "de.tr7zw", "item-nbt-api").version("2.12.2")
library("vault", "com.github.MilkBowl", "VaultAPI").version("1.7.1")
library("metrics", "org.bstats", "bstats-bukkit").version("3.0.2")
library("oraxen", "io.th0rgal", "oraxen").version("1.164.0")
library("configme", "ch.jalu", "configme").version("1.4.1")
bundle("adventure", listOf("adventure4", "minimessage4"))
}
}
}
@ -50,4 +54,4 @@ dependencyResolutionManagement {
rootProject.name = "CrazyAuctions"
include("paper")
//include("fabric")
include("common")