Compare commits
10 commits
919bfadc38
...
dfec660fc7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfec660fc7 | ||
|
|
76f7f0792c | ||
|
|
9a779eed79 | ||
|
|
3815c9ac8d | ||
|
|
a4ae9f9b94 | ||
|
|
37ecfa0d1d | ||
|
|
7b49addd51 | ||
|
|
a879b69f61 | ||
|
|
990a503896 | ||
|
|
1efeff9026 |
6 changed files with 26 additions and 11 deletions
|
|
@ -14,14 +14,21 @@ base {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("cloud.commandframework:cloud-paper:${VersionConstants.cloudVersion}")
|
implementation("cloud.commandframework:cloud-paper:${VersionConstants.cloudVersion}")
|
||||||
implementation("net.kyori:adventure-api:${VersionConstants.adventureVersion}")
|
implementation("net.kyori:adventure-api:${VersionConstants.adventureVersion}") {
|
||||||
implementation("net.kyori:adventure-platform-bukkit:${VersionConstants.adventurePlatformVersion}")
|
exclude("net.kyori", "adventure-text-minimessage")
|
||||||
|
}
|
||||||
|
implementation("net.kyori:adventure-platform-bukkit:${VersionConstants.adventurePlatformVersion}") {
|
||||||
|
exclude("net.kyori", "adventure-api")
|
||||||
|
exclude("net.kyori", "adventure-text-minimessage")
|
||||||
|
}
|
||||||
implementation("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}") {
|
implementation("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}") {
|
||||||
exclude("net.kyori", "adventure-api")
|
exclude("net.kyori", "adventure-api")
|
||||||
}
|
}
|
||||||
implementation("org.bstats:bstats-bukkit:${VersionConstants.bstatsVersion}")
|
implementation("org.bstats:bstats-bukkit:${VersionConstants.bstatsVersion}")
|
||||||
implementation(project(":Common"))
|
implementation(project(":Common"))
|
||||||
compileOnly("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT")
|
compileOnly("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT") {
|
||||||
|
exclude("net.kyori", "*")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<ShadowJar> {
|
tasks.withType<ShadowJar> {
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,13 @@ repositories {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("cloud.commandframework:cloud-bungee:${VersionConstants.cloudVersion}")
|
implementation("cloud.commandframework:cloud-bungee:${VersionConstants.cloudVersion}")
|
||||||
implementation("net.kyori:adventure-api:${VersionConstants.adventureVersion}")
|
implementation("net.kyori:adventure-api:${VersionConstants.adventureVersion}") {
|
||||||
implementation("net.kyori:adventure-platform-bungeecord:${VersionConstants.adventurePlatformVersion}")
|
exclude("net.kyori", "adventure-text-minimessage")
|
||||||
|
}
|
||||||
|
implementation("net.kyori:adventure-platform-bungeecord:${VersionConstants.adventurePlatformVersion}") {
|
||||||
|
exclude("net.kyori", "adventure-api")
|
||||||
|
exclude("net.kyori", "adventure-text-minimessage")
|
||||||
|
}
|
||||||
implementation("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}") {
|
implementation("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}") {
|
||||||
exclude("net.kyori", "adventure-api")
|
exclude("net.kyori", "adventure-api")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,10 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly("net.kyori:adventure-platform-api:${VersionConstants.adventurePlatformVersion}")
|
compileOnly("net.kyori:adventure-platform-api:${VersionConstants.adventurePlatformVersion}") {
|
||||||
|
exclude("net.kyori", "adventure-api")
|
||||||
|
exclude("net.kyori", "adventure-text-minimessage")
|
||||||
|
}
|
||||||
compileOnly("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}")
|
compileOnly("net.kyori:adventure-text-minimessage:${VersionConstants.adventureMinimessageVersion}")
|
||||||
compileOnly("com.github.FrankHeijden:ServerUtilsUpdater:5f722b10d1")
|
compileOnly("com.github.FrankHeijden:ServerUtilsUpdater:5f722b10d1")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ public class WatchManager<P, T> {
|
||||||
|
|
||||||
PluginWatchResults watchResults = new PluginWatchResults();
|
PluginWatchResults watchResults = new PluginWatchResults();
|
||||||
for (String pluginId : task.pluginIds) {
|
for (String pluginId : task.pluginIds) {
|
||||||
watchResults.add(WatchResult.START, "plugin", pluginId);
|
watchResults.add(WatchResult.STOPPED, "plugin", pluginId);
|
||||||
}
|
}
|
||||||
return watchResults;
|
return watchResults;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ plugins {
|
||||||
|
|
||||||
group = "net.frankheijden.serverutils"
|
group = "net.frankheijden.serverutils"
|
||||||
val dependencyDir = "${group}.dependencies"
|
val dependencyDir = "${group}.dependencies"
|
||||||
version = "3.5.3"
|
version = "3.5.5-SNAPSHOT"
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
object VersionConstants {
|
object VersionConstants {
|
||||||
const val cloudVersion = "1.8.0-SNAPSHOT"
|
const val cloudVersion = "1.8.0"
|
||||||
const val adventureVersion = "4.9.3"
|
const val adventureVersion = "4.11.0"
|
||||||
const val adventurePlatformVersion = "4.0.1"
|
const val adventurePlatformVersion = "4.1.2"
|
||||||
const val adventureMinimessageVersion = "4.2.0-SNAPSHOT"
|
const val adventureMinimessageVersion = "4.2.0-SNAPSHOT"
|
||||||
const val bstatsVersion = "3.0.0"
|
const val bstatsVersion = "3.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue