Fix dumbness issue

This commit is contained in:
AverageGithub 2024-03-22 14:01:46 +01:00
parent 94692385b6
commit e327644f4d
3 changed files with 21 additions and 14 deletions

View File

@ -1,4 +1,4 @@
group = 'com.artillexstudios.axminions' group = 'com.artillexstudios.axminions.api'
version = rootProject.version version = rootProject.version
shadowJar { shadowJar {

View File

@ -134,21 +134,28 @@ allprojects {
compileOnly 'org.black_ixx:playerpoints:3.2.6' compileOnly 'org.black_ixx:playerpoints:3.2.6'
} }
shadowJar { compileKotlin {
relocate("com.artillexstudios.axapi", "com.artillexstudios.axminions.libs.axapi") kotlinOptions {
relocate("org.h2", "com.artillexstudios.axminions.libs.h2") javaParameters = true
relocate("org.jetbrains.kotlin", "com.artillexstudios.axminions.libs.kotlin") }
relocate("com.zaxxer", "com.artillexstudios.axminions.libs.hikaricp")
relocate("org.bstats", "com.artillexstudios.axminions.libs.bstats")
relocate("net.byteflux", "com.artillexstudios.axminions.libs.libby")
relocate("net.kyori", "com.artillexstudios.axminions.libs.kyori")
relocate("revxrsal.commands", "com.artillexstudios.axminions.libs.lamp")
relocate("org.jetbrains.annotations", "com.artillexstudios.axminions.libs.annotations")
relocate("org.slf4j", "com.artillexstudios.axminions.libs.slf4j")
relocate("org.intellij.lang.annotations", "com.artillexstudios.axminions.libs.intellij.annotations")
} }
} }
shadowJar {
relocate("com.artillexstudios.axapi", "com.artillexstudios.axminions.libs.axapi")
relocate("org.h2", "com.artillexstudios.axminions.libs.h2")
relocate("org.jetbrains.kotlin", "com.artillexstudios.axminions.libs.kotlin")
relocate("com.zaxxer", "com.artillexstudios.axminions.libs.hikaricp")
relocate("org.bstats", "com.artillexstudios.axminions.libs.bstats")
relocate("net.byteflux", "com.artillexstudios.axminions.libs.libby")
relocate("net.kyori", "com.artillexstudios.axminions.libs.kyori")
relocate("revxrsal.commands", "com.artillexstudios.axminions.libs.lamp")
relocate("org.jetbrains.annotations", "com.artillexstudios.axminions.libs.annotations")
relocate("org.slf4j", "com.artillexstudios.axminions.libs.slf4j")
relocate("org.intellij.lang.annotations", "com.artillexstudios.axminions.libs.intellij.annotations")
}
kotlin { kotlin {
jvmToolchain(17) jvmToolchain(17)
} }

View File

@ -1,4 +1,4 @@
group = 'com.artillexstudios.axminions' group = 'com.artillexstudios.axminions.common'
version = rootProject.version version = rootProject.version
processResources { processResources {