Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=me.arasple.mc.trmenu
version=3.9.14
version=3.9.15
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import org.bukkit.command.CommandSender
import org.bukkit.entity.Player
import org.bukkit.metadata.FixedMetadataValue
import taboolib.common.LifeCycle
import taboolib.common.env.RuntimeDependency
import taboolib.common.platform.Awake
import taboolib.common.platform.ProxyPlayer
import taboolib.common.platform.Schedule
Expand Down Expand Up @@ -34,6 +35,12 @@ import java.util.concurrent.ConcurrentHashMap
* <meta> -> only lost when the server is shut down
* <data> -> storable, (support MongoDB)
*/
@RuntimeDependency(
value = "!org.slf4j:slf4j-jdk14:2.0.8",
test = "!org.slf4j_2_0_8.jul.JULServiceProvider",
relocate = ["!org.slf4j", "!org.slf4j_2_0_8"],
transitive = false
)
object Metadata {

internal val meta = mutableMapOf<String, DataMap>()
Expand Down