Archived
0

Deleted unnecessary stuff, converted to maven project

This commit is contained in:
Pepich
2017-11-15 18:54:15 +01:00
parent 51380d886e
commit 732ef31f2e
3 changed files with 19 additions and 9 deletions

19
pom.xml Normal file
View File

@@ -0,0 +1,19 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Faucet</groupId>
<artifactId>Faucet</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source/>
<target/>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@@ -33,7 +33,6 @@ public class Faucet extends JavaPlugin
{
plugin = this;
ChatAPI.initialize(this);
// Configger.init();
MysqlHandler.init();
}

View File

@@ -32,14 +32,6 @@ public interface Module
public default void onDisable()
{}
/** Gets called on registration of the module, when this option is selected for command registration
*
* @return The String used for the CommandManager to register the commands. */
public default String getCommandString()
{
return null;
}
/** This method gets run the very first time a module gets loaded. You can use this to set up file structures or background data. */
public default void firstLoad()
{}