Skip to content

Commit ed30919

Browse files
committed
Update
1 parent 4bd22c1 commit ed30919

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

build.gradle.kts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
`java-library`
33
`maven-publish`
4-
id("com.github.johnrengelman.shadow") version "8.1.1"
4+
id("com.gradleup.shadow") version "9.0.0-beta4"
55
}
66

77
description = "Fork of the first authentication plugin for the Bukkit API!"
@@ -29,11 +29,9 @@ repositories {
2929
maven("https://repo.essentialsx.net/releases/")
3030
maven("https://repo.dmulloy2.net/nexus/repository/releases/")
3131
maven("https://repo.dmulloy2.net/nexus/repository/snapshots/")
32-
maven("https://repo.onarandombox.com/content/repositories/multiverse/")
33-
maven("https://repo.onarandombox.com/content/repositories/multiverse-snapshots/")
34-
maven("https://nexuslite.gcnt.net/repos/other/")
32+
maven("https://repo.onarandombox.com/multiverse-releases")
3533
maven("https://jitpack.io/")
36-
maven("https://repo.maven.apache.org/maven2/")
34+
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
3735
}
3836

3937
dependencies {
@@ -94,21 +92,20 @@ dependencies {
9492
compileOnly("net.luckperms:api:5.4")
9593
// PermissionsEx plugin
9694
compileOnly("ru.tehkode:PermissionsEx:1.23.5-SNAPSHOT")
97-
// Dependencies used by HAProxy feature
98-
// implementation("io.netty:netty-codec-haproxy:4.1.104.Final")
99-
// compileOnly("commons-validator:commons-validator:1.8.0")
10095
// zPermissions plugin
10196
compileOnly("org.tyrannyofheaven.bukkit:zPermissions:1.4.3-SNAPSHOT") {
10297
exclude("org.avaje", "ebean")
10398
}
10499
// Vault, https://dev.bukkit.org/bukkit-plugins/vault/
105100
compileOnly("net.milkbowl.vault:VaultAPI:1.7")
106101
// Multi World plugin, https://www.spigotmc.org/resources/multiverse-core.390/
107-
compileOnly("com.onarandombox.multiversecore:Multiverse-Core:4.3.1")
102+
compileOnly("com.onarandombox.multiversecore:multiverse-core:4.3.14")
108103
// EssentialsX plugin
109104
compileOnly("net.essentialsx:EssentialsX:2.20.1")
110105
// BCrypt implementation
111106
implementation("at.favre.lib:bcrypt:0.10.2")
107+
// PlaceholderAPI
108+
compileOnly("me.clip:placeholderapi:2.11.6")
112109
// XAuth, another authentication plugin, required by the database converter
113110
compileOnly("de.luricos.bukkit:xAuth:2.6.1-SNAPSHOT")
114111
implementation("ch.jalu:datasourcecolumns:0.1.1-SNAPSHOT")
@@ -125,6 +122,11 @@ dependencies {
125122
}
126123

127124
tasks {
125+
processResources {
126+
filesMatching("**/*.yml") {
127+
expand(project.properties)
128+
}
129+
}
128130
build { dependsOn(shadowJar) }
129131
// ShadowJar Config
130132
shadowJar {

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
group=fr.xephi
2-
version=5.6.0-FORK-b50
2+
version=5.7.0-FORK-b53
3+
mainClass = fr.xephi.authme.AuthMe
4+
authors = [sgdc3, games647, Hex3l, krusic22]

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

pom.xml

Whitespace-only changes.

src/main/resources/plugin.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# noinspection YAMLSchemaValidation
2-
name: ${pluginDescription.name}
2+
name: ${project.name}
33
# noinspection YAMLSchemaValidation
4-
authors: [${pluginDescription.authors}]
4+
authors: ${project.authors}
55
website: https://github.com/HaHaWTH/AuthMeReReloaded/
66
description: A fork of AuthMeReloaded that contains bug fixes
77
# noinspection YAMLSchemaValidation
8-
main: ${pluginDescription.main}
8+
main: ${project.mainClass}
99
folia-supported: true
10-
version: 5.7.0-FORK-b53
10+
version: ${project.version}
1111
api-version: 1.13
1212
softdepend:
1313
- Vault

0 commit comments

Comments
 (0)