Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@ target/
*.project
*.classpath
*.prefs

# IDE setting files
.vscode/

.settings/
.factorypath

dependency-reduced-pom.xml
24 changes: 0 additions & 24 deletions build.xml

This file was deleted.

Binary file removed libs/Essentials.jar
Binary file not shown.
Binary file removed libs/EssentialsGroupManager.jar
Binary file not shown.
Binary file removed libs/Factions.jar
Binary file not shown.
Binary file removed libs/GriefPrevention.jar
Binary file not shown.
Binary file removed libs/LWC.jar
Binary file not shown.
Binary file removed libs/MassiveCore.jar
Binary file not shown.
Binary file removed libs/MyWarp.jar
Binary file not shown.
Binary file removed libs/PreciousStones.jar
Binary file not shown.
Binary file removed libs/Residence.jar
Binary file not shown.
Binary file removed libs/Towny.jar
Binary file not shown.
Binary file removed libs/Vault.jar
Binary file not shown.
Binary file removed libs/WorldEdit.jar
Binary file not shown.
Binary file removed libs/WorldGuard.jar
Binary file not shown.
16 changes: 16 additions & 0 deletions libs/downloads.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Download jars from these links and put in libs directory.

paperspigot
https://papermc.io/downloads
download paperclip and run server.
then, copy ./cache/patched_<version>.jar into libs.
finally, rename patched_<version>.jar to paperspigot.jar

Factions & MassiveCore
https://www.spigotmc.org/resources/factions3-for-1-13.63602/

Residence
https://zrips.net/Residence/

MyWarp
https://dev.bukkit.org/projects/mywarp
Binary file removed libs/paperspigot.jar
Binary file not shown.
234 changes: 234 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,234 @@
<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>autosaveworld</groupId>
<artifactId>AutoSaveWorld</artifactId>
<version>4.15</version>
<description>Multifunctional plugin to manage server easier</description>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>enginehub-maven</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
<repository>
<id>essentialsx-repo</id>
<url>https://ci.ender.zone/plugin/repository/everything/</url>
</repository>
<repository>
<!-- PresiousStones repo -->
<id>elMakers-repo</id>
<url>http://maven.elmakers.com/repository/</url>
</repository>
</repositories>

<dependencies>
<!-- zlibs -->
<dependency>
<groupId>com.dropbox.core</groupId>
<artifactId>dropbox-core-sdk</artifactId>
<version>3.1.5</version>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>1.30.11</version>
</dependency>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-drive</artifactId>
<version>v3-rev197-1.25.0</version>
</dependency>
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<version>0.22.0</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.55</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.7.2</version>
</dependency>

<!-- available dependency -->
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>7.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.ess3</groupId>
<artifactId>EssentialsX</artifactId>
<version>2.18.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.griefcraft.lwc</groupId>
<artifactId>LWCX</artifactId>
<version>2.2.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.7.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.GroupManager</groupId>
<artifactId>GroupManager</artifactId>
<version>v0.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sacredlabyrinth.Phaed</groupId>
<artifactId>PreciousStones</artifactId>
<version>1.16.1.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TownyAdvanced</groupId>
<artifactId>Towny</artifactId>
<version>0.96.3.0</version>
<scope>provided</scope>
</dependency>

<!-- unavailable libs in maven repo -->
<dependency>
<groupId>com.destroystokyo.paper</groupId>
<artifactId>paper</artifactId>
<version>1.16.4-R0.1-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${basedir}/libs/paperspigot.jar</systemPath>
</dependency>
<dependency>
<groupId>com.massivecraft.massivecore</groupId>
<artifactId>MassiveCore</artifactId>
<version>3.2.3</version>
<scope>system</scope>
<systemPath>${basedir}/libs/MassiveCore.jar</systemPath>
</dependency>
<dependency>
<groupId>com.massivecraft.factions</groupId>
<artifactId>Factions</artifactId>
<version>3.2.3</version>
<scope>system</scope>
<systemPath>${basedir}/libs/Factions.jar</systemPath>
</dependency>
<dependency>
<groupId>com.bekvon.bukkit.residence</groupId>
<artifactId>Residence</artifactId>
<version>4.9.2.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/Residence.jar</systemPath>
</dependency>
<dependency>
<groupId>io.github.mywarp.mywarp</groupId>
<artifactId>MyWarp</artifactId>
<version>3.1</version>
<scope>system</scope>
<systemPath>${basedir}/libs/MyWarp.jar</systemPath>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>true</filtering>
<directory>src/main/resources/</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<finalName>${project.name}</finalName>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<target>${java.version}</target>
<source>${java.version}</source>
<encoding>UTF-8</encoding>
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
<pattern>com.dropbox</pattern>
<shadedPattern>autosaveworld.zlibs.com.dropbox</shadedPattern>
</relocation>
<relocation>
<pattern>com.fasterxml</pattern>
<shadedPattern>autosaveworld.zlibs.com.fasterxml</shadedPattern>
</relocation>
<relocation>
<pattern>com.google</pattern>
<shadedPattern>autosaveworld.zlibs.com.google</shadedPattern>
</relocation>
<relocation>
<pattern>com.jcraft</pattern>
<shadedPattern>autosaveworld.zlibs.com.jcraft</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.net</pattern>
<shadedPattern>autosaveworld.zlibs.org.apache.commons.net</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>10</java.version>
</properties>
</project>
75 changes: 0 additions & 75 deletions src/autosaveworld/zlibs/com/dropbox/core/ApiErrorResponse.java

This file was deleted.

13 changes: 0 additions & 13 deletions src/autosaveworld/zlibs/com/dropbox/core/BadRequestException.java

This file was deleted.

Loading