Skip to content

Commit

Permalink
Support for Kumaisu Libraries 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaisu committed Oct 12, 2019
1 parent b9f9639 commit 55f4d6f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 23 deletions.
2 changes: 1 addition & 1 deletion buildNumber.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file
#Fri Oct 11 13:32:37 JST 2019
#Sat Oct 12 20:00:32 JST 2019
buildNumber=2
42 changes: 25 additions & 17 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>Citizenship</artifactId>
<version>0.8.1</version>
<version>0.8.2</version>
<description>Citizenship Control Manager plugins</description>
<scm>
<connection>scm:svn:http://127.0.0.1/dummy</connection>
Expand Down Expand Up @@ -79,25 +79,15 @@
<artifactId>bukkit</artifactId>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<bukkitVersion>1.12.2-R0.1-SNAPSHOT</bukkitVersion>
</properties>
</profile>
<profile>
<id>1.14.4</id>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
<exclusion>
<artifactId>json-simple</artifactId>
<groupId>com.googlecode.json-simple</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
Expand All @@ -113,6 +103,20 @@
</exclusions>
</dependency>
</dependencies>
<properties>
<bukkitVersion>1.12.2-R0.1-SNAPSHOT</bukkitVersion>
</properties>
</profile>
<profile>
<id>1.14.4</id>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<bukkitVersion>1.14.4-R0.1-SNAPSHOT</bukkitVersion>
</properties>
Expand Down Expand Up @@ -151,19 +155,23 @@
<dependency>
<groupId>com.mycompany</groupId>
<artifactId>KumaisuLibraries</artifactId>
<version>0.1</version>
<version>0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
<exclusion>
<artifactId>json-simple</artifactId>
<groupId>com.googlecode.json-simple</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>Citizenship</artifactId>
<version>0.8.1</version>
<version>0.8.2</version>
<description>Citizenship Control Manager plugins</description>
<packaging>jar</packaging>
<properties>
Expand Down Expand Up @@ -94,7 +94,7 @@
<dependency>
<groupId>com.mycompany</groupId>
<artifactId>KumaisuLibraries</artifactId>
<version>0.1</version>
<version>0.2</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ConfigManager {

public ConfigManager(Plugin plugin) {
this.plugin = plugin;
Tools.entryDebugFlag( programCode, Tools.consoleMode.none );
Tools.entryDebugFlag( programCode, Tools.consoleMode.print );
Tools.Prt( "Config Loading now...", programCode );
load();
}
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
main: com.mycompany.citizenship.Citizenship
name: Citizenship
version: 0.8.1
version: 0.8.2
author: Kumaisu
database: true
commands:
Expand All @@ -24,4 +24,3 @@ permissions:
description: Player Force Initialize Command
permission-message: You do not have permission.
default: false

0 comments on commit 55f4d6f

Please sign in to comment.