mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2025-01-06 00:18:39 +01:00
Remove specific dependency on Sponge API 8 in the mod info file (#1221)
This commit is contained in:
parent
1e7ef15e54
commit
e2f1c1e16b
@ -5,7 +5,8 @@ dependencies {
|
||||
compileOnly 'org.checkerframework:checker-qual:2.5.5'
|
||||
}
|
||||
|
||||
if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {
|
||||
// disabled by default
|
||||
if (false && project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {
|
||||
apply plugin: 'signing'
|
||||
|
||||
javadoc {
|
||||
|
@ -46,6 +46,7 @@ import org.spongepowered.api.event.Listener;
|
||||
import org.spongepowered.api.event.Order;
|
||||
import org.spongepowered.api.event.game.state.GamePreInitializationEvent;
|
||||
import org.spongepowered.api.event.game.state.GameStoppingServerEvent;
|
||||
import org.spongepowered.api.plugin.Dependency;
|
||||
import org.spongepowered.api.plugin.Plugin;
|
||||
import org.spongepowered.api.plugin.PluginContainer;
|
||||
import org.spongepowered.api.profile.GameProfile;
|
||||
@ -71,7 +72,11 @@ import java.util.stream.Stream;
|
||||
version = "@version@",
|
||||
authors = "Luck",
|
||||
description = "A permissions plugin",
|
||||
url = "https://github.com/lucko/LuckPerms"
|
||||
url = "https://github.com/lucko/LuckPerms",
|
||||
dependencies = {
|
||||
// explicit dependency on spongeapi with no defined API version
|
||||
@Dependency(id = "spongeapi")
|
||||
}
|
||||
)
|
||||
public class LPSpongeBootstrap implements LuckPermsBootstrap {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user