update dependenices & workflows
This commit is contained in:
parent
cd73603e3f
commit
ec25d738c0
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@ -14,18 +14,13 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Cache Gradle Packages
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-Build-Cache
|
|
||||||
path: |
|
|
||||||
~/.gradle/caches
|
|
||||||
~/.gradle/wrapper
|
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
|
||||||
java-version: 21
|
java-version: 21
|
||||||
|
distribution: temurin
|
||||||
|
- name: Setup Gradle
|
||||||
|
uses: gradle/actions/setup-gradle@v4
|
||||||
- name: Make Gradle Wrapper Executable
|
- name: Make Gradle Wrapper Executable
|
||||||
run: chmod +x ./gradlew
|
run: chmod +x ./gradlew
|
||||||
- name: Build
|
- name: Build
|
||||||
|
|||||||
0
.github/workflows/maven.yml
vendored
0
.github/workflows/maven.yml
vendored
@ -65,8 +65,8 @@ dependencies {
|
|||||||
// PBKDF2 implementation
|
// PBKDF2 implementation
|
||||||
implementation("de.rtner:PBKDF2:1.1.4")
|
implementation("de.rtner:PBKDF2:1.1.4")
|
||||||
// MySQL connector, shaded into the legacy jar
|
// MySQL connector, shaded into the legacy jar
|
||||||
implementation("com.mysql:mysql-connector-j:8.4.0")
|
implementation("com.mysql:mysql-connector-j:9.1.0")
|
||||||
implementation("org.mariadb.jdbc:mariadb-java-client:3.3.3")
|
implementation("org.mariadb.jdbc:mariadb-java-client:3.5.1")
|
||||||
// Argon2 implementation
|
// Argon2 implementation
|
||||||
implementation("de.mkammerer:argon2-jvm-nolibs:2.11")
|
implementation("de.mkammerer:argon2-jvm-nolibs:2.11")
|
||||||
// TOTP client
|
// TOTP client
|
||||||
@ -83,11 +83,11 @@ dependencies {
|
|||||||
// bStats metrics
|
// bStats metrics
|
||||||
implementation("org.bstats:bstats-bukkit:3.0.2")
|
implementation("org.bstats:bstats-bukkit:3.0.2")
|
||||||
// ProtocolLib
|
// ProtocolLib
|
||||||
compileOnly("com.comphenix.protocol:ProtocolLib:5.1.0")
|
compileOnly("com.comphenix.protocol:ProtocolLib:5.3.0")
|
||||||
// Adventure API
|
// Adventure API
|
||||||
implementation("net.kyori:adventure-text-minimessage:4.17.0")
|
implementation("net.kyori:adventure-text-minimessage:4.18.0")
|
||||||
implementation("net.kyori:adventure-platform-bukkit:4.3.2")
|
implementation("net.kyori:adventure-platform-bukkit:4.3.4")
|
||||||
implementation("net.kyori:adventure-text-serializer-gson:4.17.0")
|
implementation("net.kyori:adventure-text-serializer-gson:4.18.0")
|
||||||
// LuckPerms plugin
|
// LuckPerms plugin
|
||||||
compileOnly("net.luckperms:api:5.4")
|
compileOnly("net.luckperms:api:5.4")
|
||||||
// PermissionsEx plugin
|
// PermissionsEx plugin
|
||||||
@ -111,7 +111,7 @@ dependencies {
|
|||||||
// XAuth, another authentication plugin, required by the database converter
|
// XAuth, another authentication plugin, required by the database converter
|
||||||
compileOnly("de.luricos.bukkit:xAuth:2.6.1-SNAPSHOT")
|
compileOnly("de.luricos.bukkit:xAuth:2.6.1-SNAPSHOT")
|
||||||
implementation("ch.jalu:datasourcecolumns:0.1.1-SNAPSHOT")
|
implementation("ch.jalu:datasourcecolumns:0.1.1-SNAPSHOT")
|
||||||
implementation("org.postgresql:postgresql:42.7.3") {
|
implementation("org.postgresql:postgresql:42.7.4") {
|
||||||
exclude("org.checkerframework", "checker-qual")
|
exclude("org.checkerframework", "checker-qual")
|
||||||
}
|
}
|
||||||
// Required to mock the LuckPerms API
|
// Required to mock the LuckPerms API
|
||||||
@ -169,10 +169,7 @@ tasks {
|
|||||||
// bStats metrics class
|
// bStats metrics class
|
||||||
relocate("org.bstats", "fr.xephi.authme.libs.org.bstats")
|
relocate("org.bstats", "fr.xephi.authme.libs.org.bstats")
|
||||||
relocate("org.mariadb.jdbc", "fr.xephi.authme.libs.org.mariadb.jdbc")
|
relocate("org.mariadb.jdbc", "fr.xephi.authme.libs.org.mariadb.jdbc")
|
||||||
relocate(
|
relocate("com.github.Anon8281.universalScheduler", "fr.xephi.authme.libs.com.github.Anon8281.universalScheduler")
|
||||||
"com.github.Anon8281.universalScheduler",
|
|
||||||
"fr.xephi.authme.libs.com.github.Anon8281.universalScheduler"
|
|
||||||
)
|
|
||||||
relocate("com.mysql", "fr.xephi.authme.libs.com.mysql")
|
relocate("com.mysql", "fr.xephi.authme.libs.com.mysql")
|
||||||
relocate("com.google.protobuf", "fr.xephi.authme.libs.com.google.protobuf")
|
relocate("com.google.protobuf", "fr.xephi.authme.libs.com.google.protobuf")
|
||||||
relocate("io.netty", "fr.xephi.authme.libs.io.netty")
|
relocate("io.netty", "fr.xephi.authme.libs.io.netty")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user