Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
HaHaWTH committed Dec 13, 2024
1 parent 4bd22c1 commit ed30919
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
20 changes: 11 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
`java-library`
`maven-publish`
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.gradleup.shadow") version "9.0.0-beta4"
}

description = "Fork of the first authentication plugin for the Bukkit API!"
Expand Down Expand Up @@ -29,11 +29,9 @@ repositories {
maven("https://repo.essentialsx.net/releases/")
maven("https://repo.dmulloy2.net/nexus/repository/releases/")
maven("https://repo.dmulloy2.net/nexus/repository/snapshots/")
maven("https://repo.onarandombox.com/content/repositories/multiverse/")
maven("https://repo.onarandombox.com/content/repositories/multiverse-snapshots/")
maven("https://nexuslite.gcnt.net/repos/other/")
maven("https://repo.onarandombox.com/multiverse-releases")
maven("https://jitpack.io/")
maven("https://repo.maven.apache.org/maven2/")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
}

dependencies {
Expand Down Expand Up @@ -94,21 +92,20 @@ dependencies {
compileOnly("net.luckperms:api:5.4")
// PermissionsEx plugin
compileOnly("ru.tehkode:PermissionsEx:1.23.5-SNAPSHOT")
// Dependencies used by HAProxy feature
// implementation("io.netty:netty-codec-haproxy:4.1.104.Final")
// compileOnly("commons-validator:commons-validator:1.8.0")
// zPermissions plugin
compileOnly("org.tyrannyofheaven.bukkit:zPermissions:1.4.3-SNAPSHOT") {
exclude("org.avaje", "ebean")
}
// Vault, https://dev.bukkit.org/bukkit-plugins/vault/
compileOnly("net.milkbowl.vault:VaultAPI:1.7")
// Multi World plugin, https://www.spigotmc.org/resources/multiverse-core.390/
compileOnly("com.onarandombox.multiversecore:Multiverse-Core:4.3.1")
compileOnly("com.onarandombox.multiversecore:multiverse-core:4.3.14")
// EssentialsX plugin
compileOnly("net.essentialsx:EssentialsX:2.20.1")
// BCrypt implementation
implementation("at.favre.lib:bcrypt:0.10.2")
// PlaceholderAPI
compileOnly("me.clip:placeholderapi:2.11.6")
// XAuth, another authentication plugin, required by the database converter
compileOnly("de.luricos.bukkit:xAuth:2.6.1-SNAPSHOT")
implementation("ch.jalu:datasourcecolumns:0.1.1-SNAPSHOT")
Expand All @@ -125,6 +122,11 @@ dependencies {
}

tasks {
processResources {
filesMatching("**/*.yml") {
expand(project.properties)
}
}
build { dependsOn(shadowJar) }
// ShadowJar Config
shadowJar {
Expand Down
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
group=fr.xephi
version=5.6.0-FORK-b50
version=5.7.0-FORK-b53
mainClass = fr.xephi.authme.AuthMe
authors = [sgdc3, games647, Hex3l, krusic22]
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Empty file removed pom.xml
Empty file.
8 changes: 4 additions & 4 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# noinspection YAMLSchemaValidation
name: ${pluginDescription.name}
name: ${project.name}
# noinspection YAMLSchemaValidation
authors: [${pluginDescription.authors}]
authors: ${project.authors}
website: https://github.com/HaHaWTH/AuthMeReReloaded/
description: A fork of AuthMeReloaded that contains bug fixes
# noinspection YAMLSchemaValidation
main: ${pluginDescription.main}
main: ${project.mainClass}
folia-supported: true
version: 5.7.0-FORK-b53
version: ${project.version}
api-version: 1.13
softdepend:
- Vault
Expand Down

0 comments on commit ed30919

Please sign in to comment.