mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-29 21:43:24 +01:00
Configures api version injection
This commit is contained in:
parent
de3bd3b8c8
commit
4263fd0875
@ -26,6 +26,30 @@
|
|||||||
<release>${java.release}</release>
|
<release>${java.release}</release>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>de.m3y.maven</groupId>
|
||||||
|
<artifactId>inject-maven-plugin</artifactId>
|
||||||
|
<version>1.3</version>
|
||||||
|
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>process-classes</phase>
|
||||||
|
|
||||||
|
<goals>
|
||||||
|
<goal>inject</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
|
||||||
|
<configuration>
|
||||||
|
<injections>
|
||||||
|
<injection>
|
||||||
|
<value>${project.version}</value>
|
||||||
|
<pointCut>com.craftaro.ultimatestacker.api.UltimateStackerAPI.getVersion</pointCut>
|
||||||
|
</injection>
|
||||||
|
</injections>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
@ -7,6 +7,11 @@ import com.craftaro.ultimatestacker.api.stack.spawner.SpawnerStackManager;
|
|||||||
import com.craftaro.core.hooks.stackers.UltimateStacker;
|
import com.craftaro.core.hooks.stackers.UltimateStacker;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The main class of the API
|
||||||
|
* <p>
|
||||||
|
* <b>!! {@link UltimateStackerAPI#getVersion()} value is automatically replaced by maven don't change it !!</b>
|
||||||
|
*/
|
||||||
public final class UltimateStackerAPI {
|
public final class UltimateStackerAPI {
|
||||||
|
|
||||||
private static Plugin plugin;
|
private static Plugin plugin;
|
||||||
@ -82,4 +87,11 @@ public final class UltimateStackerAPI {
|
|||||||
return settings;
|
return settings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to get the version of the plugin
|
||||||
|
* @return The version of the plugin
|
||||||
|
*/
|
||||||
|
public static String getVersion() {
|
||||||
|
return "UKNOWN_VERSION";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user