Skip to content

Commit d0cf39f

Browse files
Fix build
1 parent 75f78ab commit d0cf39f

8 files changed

Lines changed: 9 additions & 6 deletions

File tree

build-data/src/main/java/net/pistonmaster/pistonqueue/data/PluginData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.pistonmaster.pistonmotd.data;
1+
package net.pistonmaster.pistonqueue.data;
22

33
public class PluginData {
44
public static final String NAME = "PistonMOTD";

buildSrc/src/main/kotlin/pq.java-conventions.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ plugins {
66
}
77

88
dependencies {
9+
implementation("org.jetbrains:annotations:20.1.0")
910
compileOnly("org.projectlombok:lombok:1.18.24")
1011
annotationProcessor("org.projectlombok:lombok:1.18.24")
1112
}

buildSrc/src/main/kotlin/pq.shadow-conventions.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ fun ShadowJar.configureRelocations() {
2929
relocate("org.checkerframework", "net.pistonmaster.pistonqueue.shadow.checkerframework")
3030
relocate("org.yaml.snakeyaml", "net.pistonmaster.pistonqueue.shadow.snakeyaml")
3131
relocate("com.google.errorprone", "net.pistonmaster.pistonqueue.shadow.google.errorprone")
32+
relocate("org.intellij.lang.annotations", "net.pistonmaster.pistonmotd.shadow.annotations.intellij")
3233
}

bukkit/src/main/resources/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PistonQueue V${project.version}
1+
# PistonQueue V${version}
22
# Note - Operators and users with the permission "queue.admin" will be excluded from restrictions.
33

44
forceLocation: true # Force the user to remain in a certain position.

bukkit/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: PistonQueueBukkit
2-
version: ${project.version}
2+
version: ${version}
33
api-version: 1.13
44
main: net.pistonmaster.pistonqueue.bukkit.PistonQueueBukkit
55
author: AlexProgrammerDE
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: PistonQueue
22
main: net.pistonmaster.pistonqueue.bungee.PistonQueueBungee
3-
description: ${project.description}
4-
version: ${project.version}
3+
description: ${description}
4+
version: ${version}
55
author: AlexProgrammerDE
66
softDepends: [ "PistonMOTD" ]

shared/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ plugins {
55
dependencies {
66
implementation("org.spongepowered:configurate-yaml:4.1.2")
77
compileOnly("net.pistonmaster:pistonmotd-api:5.0.0-SNAPSHOT")
8+
compileOnly("com.google.guava:guava:28.0-jre")
89
}

shared/src/main/resources/proxy_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PistonQueue V${project.version}
1+
# PistonQueue V${version}
22
# Make the main server the default one you log in to
33
# READ ME: all colours are orange by default just add & and colour
44
# to change the colours to your liking

0 commit comments

Comments
 (0)