Modify POM, support new BungeeCord builds.

This commit is contained in:
Tux 2014-02-11 17:42:52 -05:00
parent 2f40480a50
commit cb7963dbc5
2 changed files with 5 additions and 7 deletions

View File

@ -137,13 +137,6 @@
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-config</artifactId>
<version>1.7-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>

View File

@ -75,4 +75,9 @@ public class RedisBungeeCommandSender implements CommandSender {
public void setPermission(String s, boolean b) {
// no-op
}
@Override
public Collection<String> getPermissions() {
return Collections.emptySet();
}
}