mirror of
https://hub.spigotmc.org/stash/scm/spigot/plugin-annotations.git
synced 2025-04-13 09:29:56 +00:00
Add 1.14 and 1.15
Increment version to 1.13-SNAPSHOT
This commit is contained in:
parent
7b4d638deb
commit
71bc0c2026
2 changed files with 12 additions and 2 deletions
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue