Skip to content

Commit

Permalink
feat: move jcougar dependency to libs.versions.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
sqyyy-jar committed Apr 25, 2024
1 parent 204be2d commit 63a2db4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
paper = "1.20.4-R0.1-SNAPSHOT"
jackson-databind = "2.17.0"
cloud = "2.0.0-beta.2"
jcougar-ui = "0.5.2-alpha"

[libraries]
paper = { module = "io.papermc.paper:paper-api", version.ref = "paper" }
jacksonDatabind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson-databind" }
cloud = { module = "org.incendo:cloud-paper", version.ref = "cloud" }
cloud = { module = "org.incendo:cloud-paper", version.ref = "cloud" }
jcougarUi = { module = "com.github.sqyyy:jcougar-ui", version.ref = "jcougar-ui" }
4 changes: 2 additions & 2 deletions paper-standalone/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
`java-library`
java
id("com.github.johnrengelman.shadow") version "8.1.1"
id("xyz.jpenilla.run-paper") version "2.2.4"
}
Expand All @@ -16,7 +16,7 @@ dependencies {
implementation(project(":api"))
implementation(project(":paper-core"))
implementation(libs.cloud)
implementation("com.github.sqyyy:jcougar-ui:0.5.1-alpha") {
implementation(libs.jcougarUi) {
version { branch = "main" }
}
}
Expand Down

0 comments on commit 63a2db4

Please sign in to comment.