refactored location of autoupdater package

This commit is contained in:
Daniel 2019-04-30 00:22:22 +02:00
parent 11bf5eac5f
commit 42e1548310
7 changed files with 14 additions and 7 deletions

View File

@ -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>

View File

@ -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

View File

@ -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.*;

View File

@ -1,4 +1,4 @@
package de.butzlabben.autoupdater;
package de.butzlabben.world.autoupdater;
import java.io.FileOutputStream;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package de.butzlabben.autoupdater;
package de.butzlabben.world.autoupdater;
import java.io.File;
import java.lang.reflect.InvocationTargetException;

View File

@ -1,4 +1,4 @@
package de.butzlabben.autoupdater;
package de.butzlabben.world.autoupdater;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

View File

@ -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;