Skip to content

Commit

Permalink
Remove luckperms
Browse files Browse the repository at this point in the history
  • Loading branch information
senseiwells committed Oct 24, 2024
1 parent 10e4159 commit 8bba22b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
19 changes: 17 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ dependencies {
modImplementation(libs.fabric.loader)
modImplementation(libs.fabric.api)

runtimeOnly(libs.luckperms)

includeModImplementation(libs.permissions) {
exclude(libs.fabric.api.get().group)
}
Expand Down Expand Up @@ -106,6 +104,23 @@ tasks {
artifactId = "chunk-debug"
}
}

repositories {
val mavenUrl = System.getenv("MAVEN_URL")
if (mavenUrl != null) {
maven {
url = uri(mavenUrl)
val mavenUsername = System.getenv("MAVEN_USERNAME")
val mavenPassword = System.getenv("MAVEN_PASSWORD")
if (mavenUsername != null && mavenPassword != null) {
credentials {
username = mavenUsername
password = mavenPassword
}
}
}
}
}
}
}

Expand Down
2 changes: 0 additions & 2 deletions libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ fabric-api = "0.103.0+1.21.1"
permissions = "0.3.1"
mod-publish = "0.7.0"
parchment = "1.21:2024.07.28"
luckperms = "v5.4.140-fabric"

[libraries]
minecraft = { module = "com.mojang:minecraft" , version.ref = "minecraft" }
fabric-loader = { module = "net.fabricmc:fabric-loader" , version.ref = "fabric-loader" }
fabric-api = { module = "net.fabricmc.fabric-api:fabric-api", version.ref = "fabric-api" }
permissions = { module = "me.lucko:fabric-permissions-api" , version.ref = "permissions" }
luckperms = { module = "maven.modrinth:luckperms" , version.ref = "luckperms" }

[plugins]
mod-publish = { id = "me.modmuss50.mod-publish-plugin", version.ref = "mod-publish" }
Expand Down

0 comments on commit 8bba22b

Please sign in to comment.