mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-09-26 22:39:09 +02:00
Compare commits
6 Commits
fix/binary
...
copilot/fi
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4e8f775772 | ||
![]() |
31d27861e3 | ||
![]() |
78d6ca1deb | ||
![]() |
03aa1be5a3 | ||
![]() |
2e3832f1bd | ||
![]() |
05af41f832 |
@@ -17,6 +17,19 @@ repositories {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Make sure we control the exact version of paper being included, while dropping spigot + bukkit
|
||||||
|
configurations.all {
|
||||||
|
exclude("org.bukkit")
|
||||||
|
exclude("org.spigotmc")
|
||||||
|
|
||||||
|
resolutionStrategy.eachDependency {
|
||||||
|
if (requested.group == "io.papermc.paper" && requested.name == "paper-api") {
|
||||||
|
useVersion(checkNotNull(libs.paper.orNull?.version))
|
||||||
|
because("specific paper version is required to prevent binary incompatibilities on older versions")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(projects.plotsquaredCore)
|
api(projects.plotsquaredCore)
|
||||||
|
|
||||||
@@ -28,20 +41,13 @@ dependencies {
|
|||||||
implementation(libs.paperlib)
|
implementation(libs.paperlib)
|
||||||
|
|
||||||
// Plugins
|
// Plugins
|
||||||
compileOnly(libs.worldeditBukkit) {
|
compileOnly(libs.worldeditBukkit)
|
||||||
exclude(group = "org.bukkit")
|
|
||||||
exclude(group = "org.spigotmc")
|
|
||||||
}
|
|
||||||
compileOnly(libs.faweBukkit) { isTransitive = false }
|
compileOnly(libs.faweBukkit) { isTransitive = false }
|
||||||
testImplementation(libs.faweBukkit) { isTransitive = false }
|
testImplementation(libs.faweBukkit) { isTransitive = false }
|
||||||
compileOnly(libs.vault) {
|
compileOnly(libs.vault)
|
||||||
exclude(group = "org.bukkit")
|
|
||||||
}
|
|
||||||
compileOnly(libs.placeholderapi)
|
compileOnly(libs.placeholderapi)
|
||||||
compileOnly(libs.luckperms)
|
compileOnly(libs.luckperms)
|
||||||
compileOnly(libs.essentialsx) {
|
compileOnly(libs.essentialsx)
|
||||||
exclude(group = "org.spigotmc")
|
|
||||||
}
|
|
||||||
compileOnly(libs.mvdwapi) { isTransitive = false }
|
compileOnly(libs.mvdwapi) { isTransitive = false }
|
||||||
|
|
||||||
// Other libraries
|
// Other libraries
|
||||||
|
@@ -150,8 +150,9 @@ public class ListCmd extends SubCommand {
|
|||||||
page = 0;
|
page = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
String world = player.getCurrentPlot().getWorldName();
|
Plot currentPlot = player.getCurrentPlot();
|
||||||
PlotArea area = player.getCurrentPlot().getArea();
|
String world = currentPlot != null ? currentPlot.getWorldName() : null;
|
||||||
|
PlotArea area = currentPlot != null ? currentPlot.getArea() : null;
|
||||||
String arg = args[0].toLowerCase();
|
String arg = args[0].toLowerCase();
|
||||||
final boolean[] sort = new boolean[]{true};
|
final boolean[] sort = new boolean[]{true};
|
||||||
|
|
||||||
@@ -226,13 +227,17 @@ public class ListCmd extends SubCommand {
|
|||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!player.hasPermission("plots.list.world." + world)) {
|
if (world != null && !player.hasPermission("plots.list.world." + world)) {
|
||||||
player.sendMessage(
|
player.sendMessage(
|
||||||
TranslatableCaption.of("permission.no_permission"),
|
TranslatableCaption.of("permission.no_permission"),
|
||||||
TagResolver.resolver("node", Tag.inserting(Component.text("plots.list.world." + world)))
|
TagResolver.resolver("node", Tag.inserting(Component.text("plots.list.world." + world)))
|
||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (world == null) {
|
||||||
|
player.sendMessage(TranslatableCaption.of("errors.not_in_plot_world"));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
plotConsumer.accept(PlotQuery.newQuery().inWorld(world));
|
plotConsumer.accept(PlotQuery.newQuery().inWorld(world));
|
||||||
}
|
}
|
||||||
case "expired" -> {
|
case "expired" -> {
|
||||||
@@ -257,7 +262,7 @@ public class ListCmd extends SubCommand {
|
|||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!player.hasPermission("plots.list.world." + world)) {
|
if (world != null && !player.hasPermission("plots.list.world." + world)) {
|
||||||
player.sendMessage(
|
player.sendMessage(
|
||||||
TranslatableCaption.of("permission.no_permission"),
|
TranslatableCaption.of("permission.no_permission"),
|
||||||
TagResolver.resolver("node", Tag.inserting(Component.text("plots.list.world." + world)))
|
TagResolver.resolver("node", Tag.inserting(Component.text("plots.list.world." + world)))
|
||||||
|
@@ -20,7 +20,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "com.intellectualsites.plotsquared"
|
group = "com.intellectualsites.plotsquared"
|
||||||
version = "7.5.8-SNAPSHOT"
|
version = "7.5.9-SNAPSHOT"
|
||||||
|
|
||||||
if (!File("$rootDir/.git").exists()) {
|
if (!File("$rootDir/.git").exists()) {
|
||||||
logger.lifecycle("""
|
logger.lifecycle("""
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
# Platform expectations
|
# Platform expectations
|
||||||
paper = "1.20.4-R0.1-SNAPSHOT"
|
paper = "1.20.4-R0.1-SNAPSHOT"
|
||||||
guice = "7.0.0"
|
guice = "7.0.0"
|
||||||
spotbugs = "4.9.4"
|
spotbugs = "4.9.6"
|
||||||
checkerqual = "3.51.0"
|
checkerqual = "3.51.0"
|
||||||
gson = "2.10"
|
gson = "2.10"
|
||||||
guava = "31.1-jre"
|
guava = "31.1-jre"
|
||||||
|
Reference in New Issue
Block a user