forked from TuxCoding/FastLogin
Fixed correct build + Fixed plugin.yml
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,6 +6,7 @@
|
||||
# netbeans
|
||||
/nbproject
|
||||
nb-configuration.xml
|
||||
/bukkit/nbproject/
|
||||
|
||||
# maven
|
||||
/target
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
* Fixed CrazyLogin player data restore -> Fixes memory leaks with this plugin
|
||||
* Fixed premium name check to protocolsupport
|
||||
* Improved permissions managment
|
||||
* Improved permissions management
|
||||
|
||||
######0.4
|
||||
|
||||
|
@ -38,20 +38,20 @@ commands:
|
||||
permission: ${project.artifactId}.command.unpremium
|
||||
|
||||
permissions:
|
||||
${project.parent.name}.command.premium:
|
||||
${project.artifactId}.command.premium:
|
||||
description: 'Label themselves as premium'
|
||||
default: true
|
||||
|
||||
${project.parent.name}.command.premium.other:
|
||||
${project.artifactId}.command.premium.other:
|
||||
description: 'Label others as premium'
|
||||
children:
|
||||
${project.parent.name}.command.premium
|
||||
${project.artifactId}.command.premium: true
|
||||
|
||||
${project.parent.name}.command.unpremium:
|
||||
${project.artifactId}.command.unpremium:
|
||||
description: 'Label themselves as cracked'
|
||||
default: true
|
||||
|
||||
${project.parent.name}.command..unpremium.other:
|
||||
${project.artifactId}.command..unpremium.other:
|
||||
description: 'Label others as cracked'
|
||||
children:
|
||||
${project.parent.name}.command.unpremium
|
||||
${project.artifactId}.command.unpremium: true
|
@ -26,6 +26,11 @@
|
||||
<configuration>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
<shadedArtifactAttached>false</shadedArtifactAttached>
|
||||
<artifactSet>
|
||||
<includes>
|
||||
<include>${project.groupId}:*</include>
|
||||
</includes>
|
||||
</artifactSet>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
|
Reference in New Issue
Block a user