Add ApiVersion.v1_19

This commit is contained in:
Doc 2022-06-08 22:30:04 -04:00
parent 75f0211da6
commit 766c36ac54
No known key found for this signature in database
GPG key ID: 20C3B20323EFD295
2 changed files with 7 additions and 2 deletions

View file

@ -14,7 +14,7 @@
<packaging>jar</packaging>
<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>
<properties>

View file

@ -59,7 +59,12 @@ public @interface ApiVersion {
/**
* 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;