mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-25 03:35:16 +01:00
Include branch in plugin version
This commit is contained in:
parent
8b05ce4b92
commit
ab8af032e1
4
pom.xml
4
pom.xml
@ -64,7 +64,7 @@
|
|||||||
<project.outputName>AuthMe</project.outputName>
|
<project.outputName>AuthMe</project.outputName>
|
||||||
<project.buildNumber>CUSTOM</project.buildNumber>
|
<project.buildNumber>CUSTOM</project.buildNumber>
|
||||||
<project.skipExtendedHashTests>false</project.skipExtendedHashTests>
|
<project.skipExtendedHashTests>false</project.skipExtendedHashTests>
|
||||||
<project.versionCode>${project.version}-b${project.buildNumber}</project.versionCode>
|
<project.versionCode>${project.version}-B${project.buildNumber}</project.versionCode>
|
||||||
|
|
||||||
<!-- BukkitPlugin properties -->
|
<!-- BukkitPlugin properties -->
|
||||||
<bukkitplugin.name>${project.outputName}</bukkitplugin.name>
|
<bukkitplugin.name>${project.outputName}</bukkitplugin.name>
|
||||||
@ -87,7 +87,7 @@
|
|||||||
</property>
|
</property>
|
||||||
</activation>
|
</activation>
|
||||||
<properties>
|
<properties>
|
||||||
<project.buildNumber>${env.BUILD_NUMBER}</project.buildNumber>
|
<project.buildNumber>${env.GIT_BRANCH}${env.BUILD_NUMBER}</project.buildNumber>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
<!-- Skip long hash tests, reduce the test time of 20-30 seconds -->
|
<!-- Skip long hash tests, reduce the test time of 20-30 seconds -->
|
||||||
|
@ -186,7 +186,7 @@ public class AuthMe extends JavaPlugin {
|
|||||||
if (index != -1) {
|
if (index != -1) {
|
||||||
pluginVersion = versionRaw.substring(0, index);
|
pluginVersion = versionRaw.substring(0, index);
|
||||||
pluginBuildNumber = versionRaw.substring(index + 1);
|
pluginBuildNumber = versionRaw.substring(index + 1);
|
||||||
if (pluginBuildNumber.startsWith("b")) {
|
if (pluginBuildNumber.startsWith("B")) {
|
||||||
pluginBuildNumber = pluginBuildNumber.substring(1);
|
pluginBuildNumber = pluginBuildNumber.substring(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user