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