Skip to content

Commit eab1eb2

Browse files
committed
fix
1 parent 0b6e9e1 commit eab1eb2

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Extract Version
4040
id: version
4141
run: |
42-
VERSION=$(grep "^version" build.gradle | head -n 1 | cut -d\' -f2)
42+
VERSION="$(./gradlew -q properties | sed -n 's/^version: //p' | head -n 1)"
4343
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
4444
4545
- name: Remove Existing Release

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ repositories {
2424

2525
dependencies {
2626
compileOnly("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
27-
annotationProcessor("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
2827
compileOnly("org.bukkit:bukkit:1.8-R0.1-SNAPSHOT")
2928
compileOnly("net.md-5:bungeecord-api:1.8-SNAPSHOT")
3029
compileOnly("net.lax1dude.eaglercraft.backend:api-velocity:1.0.0")
@@ -34,6 +33,7 @@ dependencies {
3433
implementation("net.kyori:adventure-text-serializer-legacy:4.20.0")
3534
implementation("net.kyori:adventure-text-minimessage:4.20.0")
3635
implementation("com.github.seancfoley:ipaddress:5.3.4")
36+
annotationProcessor("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
3737
}
3838

3939
tasks {

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)