This commit is contained in:
Colbster937
2026-01-02 19:51:06 -06:00
parent 0b6e9e1b83
commit eab1eb27e7
3 changed files with 2 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ jobs:
- name: Extract Version - name: Extract Version
id: version id: version
run: | run: |
VERSION=$(grep "^version" build.gradle | head -n 1 | cut -d\' -f2) VERSION="$(./gradlew -q properties | sed -n 's/^version: //p' | head -n 1)"
echo "version=$VERSION" >> "$GITHUB_OUTPUT" echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Remove Existing Release - name: Remove Existing Release

View File

@@ -24,7 +24,6 @@ repositories {
dependencies { dependencies {
compileOnly("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT") compileOnly("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
annotationProcessor("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
compileOnly("org.bukkit:bukkit:1.8-R0.1-SNAPSHOT") compileOnly("org.bukkit:bukkit:1.8-R0.1-SNAPSHOT")
compileOnly("net.md-5:bungeecord-api:1.8-SNAPSHOT") compileOnly("net.md-5:bungeecord-api:1.8-SNAPSHOT")
compileOnly("net.lax1dude.eaglercraft.backend:api-velocity:1.0.0") compileOnly("net.lax1dude.eaglercraft.backend:api-velocity:1.0.0")
@@ -34,6 +33,7 @@ dependencies {
implementation("net.kyori:adventure-text-serializer-legacy:4.20.0") implementation("net.kyori:adventure-text-serializer-legacy:4.20.0")
implementation("net.kyori:adventure-text-minimessage:4.20.0") implementation("net.kyori:adventure-text-minimessage:4.20.0")
implementation("com.github.seancfoley:ipaddress:5.3.4") implementation("com.github.seancfoley:ipaddress:5.3.4")
annotationProcessor("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
} }
tasks { tasks {

View File

@@ -1 +0,0 @@
rootProject.name = "OriginBlacklist"