Skip to content

Commit

Permalink
v1_17 part 2: version bumps (Denizen 1.2.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jun 11, 2021
1 parent 9c9fe57 commit 51b0ba2
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ The Denizen Scripting Language - Spigot Impl

An implementation of the Denizen Scripting Language for Spigot servers, with strong Citizens interlinks to emphasize the power of using Denizen with NPCs!

**Version 1.2.0**: Compatible with Spigot 1.14.4, 1.15.2, and 1.16.5!
**Version 1.2.1**: Compatible with Spigot 1.14.4, 1.15.2, 1.16.5, and 1.17!

**Learn about Denizen from the Beginner's guide:** https://guide.denizenscript.com/guides/background/index.html

Expand Down
8 changes: 7 additions & 1 deletion dist/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -44,6 +44,12 @@
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-v1_17</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-paper</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion paper/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Expand Up @@ -5,7 +5,8 @@ public enum NMSVersion {
NOT_SUPPORTED,
v1_14,
v1_15,
v1_16;
v1_16,
v1_17;

public boolean isAtLeast(NMSVersion version) {
return ordinal() >= version.ordinal();
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Expand Up @@ -6,23 +6,24 @@
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<packaging>pom</packaging>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<craftbukkit.version>1.16.5-R0.1-SNAPSHOT</craftbukkit.version>
<craftbukkit.version>1.17-R0.1-SNAPSHOT</craftbukkit.version>
<citizens.version>2.0.27-SNAPSHOT</citizens.version>
<dcore.version>1.90-SNAPSHOT</dcore.version>
<BUILD_NUMBER>Unknown</BUILD_NUMBER>
<BUILD_CLASS>CUSTOM</BUILD_CLASS>
<DENIZEN_VERSION>1.2.0</DENIZEN_VERSION>
<DENIZEN_VERSION>1.2.1</DENIZEN_VERSION>
</properties>

<modules>
<module>plugin</module>
<module>v1_14</module>
<module>v1_15</module>
<module>v1_16</module>
<module>v1_17</module>
<module>paper</module>
<module>dist</module>
</modules>
Expand Down
2 changes: 1 addition & 1 deletion v1_14/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion v1_15/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion v1_16/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
8 changes: 4 additions & 4 deletions v1_17/pom.xml
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>com.denizenscript</groupId>
<artifactId>denizen-parent</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>denizen-v1_16</artifactId>
<artifactId>denizen-v1_17</artifactId>

<dependencies>
<dependency>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
<version>1.17-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand All @@ -34,7 +34,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
<version>1.17-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand Down

0 comments on commit 51b0ba2

Please sign in to comment.