Skip to content

Commit

Permalink
Fix important bug in keys lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauriichan committed Apr 6, 2021
1 parent 964d732 commit 5045e8e
Show file tree
Hide file tree
Showing 39 changed files with 123 additions and 123 deletions.
14 changes: 7 additions & 7 deletions command/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,35 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>command</artifactId>
<version>2.0.6</version>
<version>2.0.7</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>exception</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>alias</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>reflection</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>logging</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion config/config-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>config</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>config-base</artifactId>
<build>
Expand Down
8 changes: 4 additions & 4 deletions config/config-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
<parent>
<artifactId>config</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>config-json</artifactId>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>config-base</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>json-tools</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
</dependencies>
<build>
Expand Down
6 changes: 3 additions & 3 deletions config/config-nbt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
<parent>
<artifactId>config</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>config-nbt</artifactId>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>config-base</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>nbt</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
</dependencies>
<build>
Expand Down
4 changes: 2 additions & 2 deletions config/config-toml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<artifactId>config</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>config-toml</artifactId>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>config-base</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.github.TheElectronWill</groupId>
Expand Down
10 changes: 5 additions & 5 deletions config/config-yaml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
<parent>
<artifactId>config</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>config-yaml</artifactId>
<version>2.0.6</version>
<version>2.0.7</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>config-base</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>reflection</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
Expand Down
4 changes: 2 additions & 2 deletions config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>config</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<packaging>pom</packaging>
<modules>
<module>config-base</module>
Expand Down
8 changes: 4 additions & 4 deletions data/data-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
<parent>
<artifactId>data</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>data-base</artifactId>
<version>2.0.7</version>
<version>2.0.8</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>key</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
</dependencies>
<build>
Expand Down
10 changes: 5 additions & 5 deletions data/data-nbtcontainer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
<parent>
<artifactId>data</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>data-nbtcontainer</artifactId>
<version>2.0.7</version>
<version>2.0.8</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>data-base</artifactId>
<version>2.0.7</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>nbt</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
2 changes: 1 addition & 1 deletion data/data-property/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>data</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>
<artifactId>data-property</artifactId>
<build>
Expand Down
4 changes: 2 additions & 2 deletions data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>data</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<packaging>pom</packaging>
<modules>
<module>data-property</module>
Expand Down
12 changes: 6 additions & 6 deletions event/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>event</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>reflection</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>logging</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>general</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
</dependencies>
<build>
Expand Down
4 changes: 2 additions & 2 deletions exception/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>exception</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<build>
<plugins>
<plugin>
Expand Down
6 changes: 3 additions & 3 deletions logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>logging</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
</dependencies>
<build>
Expand Down
10 changes: 5 additions & 5 deletions nbt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>nbt</artifactId>
<version>2.0.5</version>
<version>2.0.6</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>reflection</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>io</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
</dependencies>
<build>
Expand Down
12 changes: 6 additions & 6 deletions net/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@
<parent>
<artifactId>SyntaxApi</artifactId>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<version>2.1.3</version>
<version>2.1.4</version>
</parent>
<artifactId>net</artifactId>
<version>2.0.8</version>
<version>2.0.9</version>
<dependencies>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>java</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>reflection</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>exception</artifactId>
<version>2.0.3</version>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>json-tools</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.syntaxphoenix.syntaxapi</groupId>
<artifactId>SyntaxApi</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<packaging>pom</packaging>
<name>SyntaxApi</name>
<description>A Java Library to make some things easier and provide helpful tools</description>
Expand Down
Loading

0 comments on commit 5045e8e

Please sign in to comment.