mirror of
https://hub.spigotmc.org/stash/scm/spigot/plugin-annotations.git
synced 2025-08-05 16:48:43 +00:00
Add ApiVersion.v1_19
This commit is contained in:
parent
75f0211da6
commit
766c36ac54
2 changed files with 7 additions and 2 deletions
2
pom.xml
2
pom.xml
|
@ -14,7 +14,7 @@
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>Plugin Annotations</name>
|
<name>Plugin Annotations</name>
|
||||||
<url>http://www.spigotmc.org/</url>
|
<url>https://www.spigotmc.org/</url>
|
||||||
<description>A annotation-based compile time plugin.yml generator.</description>
|
<description>A annotation-based compile time plugin.yml generator.</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -59,7 +59,12 @@ public @interface ApiVersion {
|
||||||
/**
|
/**
|
||||||
* This target version specifies that the plugin was made with 1.18+ versions in mind.
|
* This target version specifies that the plugin was made with 1.18+ versions in mind.
|
||||||
*/
|
*/
|
||||||
v1_18("1.18");
|
v1_18("1.18"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This target version specifies that the plugin was made with 1.19+ versions in mind.
|
||||||
|
*/
|
||||||
|
v1_19("1.19");
|
||||||
|
|
||||||
private final String version;
|
private final String version;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue