mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-27 12:38:40 +01:00
Add build number to version and fix authors in plugin.yml
This commit is contained in:
parent
583c50438c
commit
90a463abcd
29
pom.xml
29
pom.xml
@ -317,6 +317,35 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<build.number>${buildNumber}</build.number>
|
||||||
|
<bukkit.plugin.version>${project.version} ${buildDescription}</bukkit.plugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>static_build_number</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>!env.BUILD_NUMBER</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<buildNumber>0</buildNumber>
|
||||||
|
<buildDescription>(manually compiled)</buildDescription>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>dynamic_build_number</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>env.BUILD_NUMBER</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<buildNumber>${env.BUILD_NUMBER}</buildNumber>
|
||||||
|
<buildDescription>(build #${env.BUILD_NUMBER})</buildDescription>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
name: ChestShop
|
name: ChestShop
|
||||||
main: com.Acrobot.ChestShop.ChestShop
|
main: com.Acrobot.ChestShop.ChestShop
|
||||||
version: ${project.version}
|
version: ${bukkit.plugin.version}
|
||||||
author: [Acrobot, dmulloy2, L4BORG]
|
author: Acrobot
|
||||||
|
authors: [dmulloy2, L4BORG, Phoenix616]
|
||||||
description: A chest shop for economy plugins.
|
description: A chest shop for economy plugins.
|
||||||
depend: [Vault]
|
depend: [Vault]
|
||||||
softdepend: [LWC, Lockette, Deadbolt, OddItem, WorldGuard, Heroes, SimpleChestLock, Residence]
|
softdepend: [LWC, Lockette, Deadbolt, OddItem, WorldGuard, Heroes, SimpleChestLock, Residence]
|
||||||
|
Loading…
Reference in New Issue
Block a user