mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-23 18:45:31 +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>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<build.number>${buildNumber}</build.number>
|
||||
<bukkit.plugin.version>${project.version} ${buildDescription}</bukkit.plugin.version>
|
||||
</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>
|
||||
|
@ -1,7 +1,8 @@
|
||||
name: ChestShop
|
||||
main: com.Acrobot.ChestShop.ChestShop
|
||||
version: ${project.version}
|
||||
author: [Acrobot, dmulloy2, L4BORG]
|
||||
version: ${bukkit.plugin.version}
|
||||
author: Acrobot
|
||||
authors: [dmulloy2, L4BORG, Phoenix616]
|
||||
description: A chest shop for economy plugins.
|
||||
depend: [Vault]
|
||||
softdepend: [LWC, Lockette, Deadbolt, OddItem, WorldGuard, Heroes, SimpleChestLock, Residence]
|
||||
|
Loading…
Reference in New Issue
Block a user