Deleted unnecessary stuff, converted to maven project
This commit is contained in:
19
pom.xml
Normal file
19
pom.xml
Normal 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>
|
||||
@@ -33,7 +33,6 @@ public class Faucet extends JavaPlugin
|
||||
{
|
||||
plugin = this;
|
||||
ChatAPI.initialize(this);
|
||||
// Configger.init();
|
||||
MysqlHandler.init();
|
||||
}
|
||||
|
||||
|
||||
@@ -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()
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user