mirror of
https://github.com/trainerlord/WorldSystem.git
synced 2025-02-09 00:02:59 +01:00
refactored location of autoupdater package
This commit is contained in:
parent
11bf5eac5f
commit
42e1548310
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
9
pom.xml
9
pom.xml
@ -111,7 +111,7 @@
|
||||
<dependency>
|
||||
<groupId>org.spigotmc</groupId>
|
||||
<artifactId>spigot-api</artifactId>
|
||||
<version>1.13-R0.1-SNAPSHOT</version>
|
||||
<version>1.14-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
@ -122,6 +122,13 @@
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>2.6</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!--
|
||||
AsyncWorld is not in the api so I have to use a local file
|
||||
Issue: https://github.com/boy0001/FastAsyncWorldedit/issues/1060
|
||||
|
@ -1,6 +1,6 @@
|
||||
package de.butzlabben.world;
|
||||
|
||||
import de.butzlabben.autoupdater.AutoUpdater;
|
||||
import de.butzlabben.world.autoupdater.AutoUpdater;
|
||||
import de.butzlabben.world.command.*;
|
||||
import de.butzlabben.world.config.*;
|
||||
import de.butzlabben.world.listener.*;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package de.butzlabben.autoupdater;
|
||||
package de.butzlabben.world.autoupdater;
|
||||
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
@ -1,4 +1,4 @@
|
||||
package de.butzlabben.autoupdater;
|
||||
package de.butzlabben.world.autoupdater;
|
||||
|
||||
import java.io.File;
|
||||
import java.lang.reflect.InvocationTargetException;
|
@ -1,4 +1,4 @@
|
||||
package de.butzlabben.autoupdater;
|
||||
package de.butzlabben.world.autoupdater;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.GsonBuilder;
|
@ -1,6 +1,6 @@
|
||||
package de.butzlabben.world.command;
|
||||
|
||||
import de.butzlabben.autoupdater.AutoUpdater;
|
||||
import de.butzlabben.world.autoupdater.AutoUpdater;
|
||||
import de.butzlabben.world.WorldSystem;
|
||||
import de.butzlabben.world.config.DependenceConfig;
|
||||
import de.butzlabben.world.config.MessageConfig;
|
||||
|
Loading…
Reference in New Issue
Block a user