Workaround for minimessage
This commit is contained in:
parent
5f58cbe62a
commit
439fb12480
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
|
@ -15,9 +15,4 @@ jobs:
|
||||||
- name: Configure Git
|
- name: Configure Git
|
||||||
run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions"
|
run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions"
|
||||||
- name: Build
|
- name: Build
|
||||||
run: ./gradlew build --stacktrace
|
run: ./gradlew build --stacktrace
|
||||||
- name: Upload artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: Chat.jar
|
|
||||||
path: build/libs/Chat*.jar
|
|
||||||
|
|
@ -4,9 +4,10 @@ plugins {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly("com.alttd:Galaxy-API:1.18.1-R0.1-SNAPSHOT")
|
compileOnly("com.alttd:Galaxy-API:1.18.1-R0.1-SNAPSHOT")
|
||||||
compileOnly("net.kyori:adventure-text-minimessage:4.10.0-SNAPSHOT") // Minimessage
|
// compileOnly("net.kyori:adventure-text-minimessage:4.10.0-SNAPSHOT") // Minimessage
|
||||||
compileOnly("org.spongepowered:configurate-yaml:4.1.2") // Configurate
|
compileOnly("org.spongepowered:configurate-yaml:4.1.2") // Configurate
|
||||||
compileOnly("net.luckperms:api:5.3") // Luckperms
|
compileOnly("net.luckperms:api:5.3") // Luckperms
|
||||||
|
compileOnly(files("../libs/minimessage-4.10.0-SNAPSHOT.jar")) // Workaround for minimessage
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,9 @@ plugins {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":api")) // API
|
implementation(project(":api")) // API
|
||||||
compileOnly("com.alttd:Galaxy-API:1.18.1-R0.1-SNAPSHOT") // Galaxy
|
compileOnly("com.alttd:Galaxy-API:1.18.1-R0.1-SNAPSHOT") // Galaxy
|
||||||
compileOnly("net.kyori:adventure-text-minimessage:4.10.0-SNAPSHOT") // Minimessage
|
// compileOnly("net.kyori:adventure-text-minimessage:4.10.0-SNAPSHOT") // Minimessage
|
||||||
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5") // move to proxy
|
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5") // move to proxy
|
||||||
|
compileOnly(files("../libs/minimessage-4.10.0-SNAPSHOT.jar")) // Workaround for minimessage
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ dependencyResolutionManagement {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven("https://repo.destro.xyz/snapshots") // Altitude - Galaxy
|
maven("https://repo.destro.xyz/snapshots") // Altitude - Galaxy
|
||||||
// maven("https://oss.sonatype.org/content/groups/public/") // Adventure
|
|
||||||
// maven("https://oss.sonatype.org/content/repositories/snapshots/") // Minimessage
|
// maven("https://oss.sonatype.org/content/repositories/snapshots/") // Minimessage
|
||||||
maven("https://nexus.velocitypowered.com/repository/") // Velocity
|
maven("https://nexus.velocitypowered.com/repository/") // Velocity
|
||||||
maven("https://nexus.velocitypowered.com/repository/maven-public/") // Velocity
|
maven("https://nexus.velocitypowered.com/repository/maven-public/") // Velocity
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,14 @@ dependencies {
|
||||||
implementation(project(":api")) // API
|
implementation(project(":api")) // API
|
||||||
compileOnly("com.velocitypowered:velocity-api:3.0.1") // Velocity
|
compileOnly("com.velocitypowered:velocity-api:3.0.1") // Velocity
|
||||||
annotationProcessor("com.velocitypowered:velocity-api:3.0.1")
|
annotationProcessor("com.velocitypowered:velocity-api:3.0.1")
|
||||||
// compileOnly("com.velocitypowered:velocity-brigadier:1.0.0-SNAPSHOT")
|
|
||||||
implementation("mysql:mysql-connector-java:8.0.27") // mysql
|
implementation("mysql:mysql-connector-java:8.0.27") // mysql
|
||||||
implementation("org.spongepowered", "configurate-yaml", "4.1.2")
|
implementation("org.spongepowered", "configurate-yaml", "4.1.2")
|
||||||
compileOnly("com.alttd.proxydiscordlink:ProxyDiscordLink:1.0.0-BETA-SNAPSHOT")
|
compileOnly("com.alttd.proxydiscordlink:ProxyDiscordLink:1.0.0-BETA-SNAPSHOT")
|
||||||
implementation("net.kyori", "adventure-text-minimessage", "4.10.0-SNAPSHOT") {
|
// implementation("net.kyori", "adventure-text-minimessage", "4.10.0-SNAPSHOT") {
|
||||||
exclude("net.kyori")
|
// exclude("net.kyori")
|
||||||
exclude("net.kyori.examination")
|
// exclude("net.kyori.examination")
|
||||||
}
|
// }
|
||||||
|
implementation(files("../libs/minimessage-4.10.0-SNAPSHOT.jar")) // Workaround for minimessage
|
||||||
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5")
|
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user