Add 1.14 and 1.15

Increment version to 1.13-SNAPSHOT
This commit is contained in:
Jared Bates 2020-03-28 09:31:40 +11:00 committed by md_5
parent 7b4d638deb
commit 71bc0c2026
2 changed files with 12 additions and 2 deletions

View file

@ -10,7 +10,7 @@
<groupId>org.spigotmc</groupId>
<artifactId>plugin-annotations</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Plugin Annotations</name>

View file

@ -34,7 +34,17 @@ public @interface ApiVersion {
/**
* This target version specifies that the plugin was made with 1.13+ versions in mind.
*/
v1_13( "1.13" );
v1_13( "1.13" ),
/**
* This target version specifies that the plugin was made with 1.14+ versions in mind.
*/
v1_14( "1.14" ),
/**
* This target version specifies that the plugin was made with 1.15+ versions in mind.
*/
v1_15( "1.15" );
private final String version;