Change third party relocate to `org.mvplugins.multiverse.external.`

This commit is contained in:
Ben Woo 2023-09-12 01:02:00 +08:00
parent 474630d1ff
commit 48f9e65321
No known key found for this signature in database
GPG Key ID: FB2A3645536E12C8
1 changed files with 17 additions and 17 deletions

View File

@ -277,25 +277,25 @@ javadoc {
project.configurations.api.canBeResolved = true
shadowJar {
relocate 'co.aikar', 'org.mvplugins.multiverse.acf'
relocate 'co.aikar', 'org.mvplugins.multiverse.external.acf'
relocate 'com.dumptruckman.minecraft.util.Logging', 'org.mvplugins.multiverse.core.utils.CoreLogging'
relocate 'com.dumptruckman.minecraft.util.DebugLog', 'org.mvplugins.multiverse.core.utils.DebugFileLogger'
relocate 'de.themoep.idconverter', 'org.mvplugins.multiverse.idconverter'
relocate 'io.github.townyadvanced.commentedconfiguration', 'org.mvplugins.multiverse.commentedconfiguration'
relocate 'me.main__.util', 'org.mvplugins.multiverse.serializationconfig'
relocate 'org.bstats', 'org.mvplugins.multiverse.bstats'
relocate 'com.sun', 'org.mvplugins.multiverse.sun'
relocate 'net.minidev', 'org.mvplugins.multiverse.minidev'
relocate 'org.objectweb', 'org.mvplugins.multiverse.objectweb'
relocate 'io.vavr', 'org.mvplugins.multiverse.vavr'
relocate 'jakarta', 'org.mvplugins.multiverse.jakarta'
relocate 'javassist', 'org.mvplugins.multiverse.javassist'
relocate 'org.aopalliance', 'org.mvplugins.multiverse.aopalliance'
relocate 'org.glassfish', 'org.mvplugins.multiverse.glassfish'
relocate 'org.jvnet', 'org.mvplugins.multiverse.jvnet'
relocate 'org.intellij', 'org.mvplugins.multiverse.intellij'
relocate 'org.jetbrains', 'org.mvplugins.multiverse.jetbrains'
relocate 'io.papermc.lib', 'org.mvplugins.multiverse.paperlib'
relocate 'de.themoep.idconverter', 'org.mvplugins.multiverse.external.idconverter'
relocate 'io.github.townyadvanced.commentedconfiguration', 'org.mvplugins.multiverse.external.commentedconfiguration'
relocate 'me.main__.util', 'org.mvplugins.multiverse.external.serializationconfig'
relocate 'org.bstats', 'org.mvplugins.multiverse.external.bstats'
relocate 'com.sun', 'org.mvplugins.multiverse.external.sun'
relocate 'net.minidev', 'org.mvplugins.multiverse.external.minidev'
relocate 'org.objectweb', 'org.mvplugins.multiverse.external.objectweb'
relocate 'io.vavr', 'org.mvplugins.multiverse.external.vavr'
relocate 'jakarta', 'org.mvplugins.multiverse.external.jakarta'
relocate 'javassist', 'org.mvplugins.multiverse.external.javassist'
relocate 'org.aopalliance', 'org.mvplugins.multiverse.external.aopalliance'
relocate 'org.glassfish', 'org.mvplugins.multiverse.external.glassfish'
relocate 'org.jvnet', 'org.mvplugins.multiverse.external.jvnet'
relocate 'org.intellij', 'org.mvplugins.multiverse.external.intellij'
relocate 'org.jetbrains', 'org.mvplugins.multiverse.external.jetbrains'
relocate 'io.papermc.lib', 'org.mvplugins.multiverse.external.paperlib'
configurations = [project.configurations.shadowed]