Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some changes #18

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.idea
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
.project
.classpath

start-server.sh
31 changes: 27 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
<p align="center">
<img src="https://i.imgur.com/h8wLVqH.png" style="width: 69%">
</p>

# ServerBackup

SourceCode of version 'v2.9.6'
ServerBackup is a Minecraft mod that enables server administrators to create backups of worlds or the entire server. It provides convenient functionality for safeguarding your Minecraft server's data.
Features

* Create backups of individual worlds or the entire server
* Customizable backup schedules and intervals
* Multithreaded backup process for improved performance
* Easy-to-use configuration options

## Usage

* Install the ServerBackup mod on your Minecraft server.
* Configure the backup settings in the mod's configuration file.
* Run the server to automatically create backups based on your specified schedule.

You can also check the [usage guide](https://github.com/P529/ServerBackup/wiki/Usage-guide)

## Contributing

Website: https://server-backup.net/
Contributions, bug reports, and feature requests are welcome. Please submit them through the GitHub repository or join our Discord server for support and suggestions.
Links

Spigot: https://www.spigotmc.org/resources/world-server-backup-1-8-1-18-x-multithreaded.79320/
* Website: [ServerBackup Website](https://server-backup.net/)
* Spigot page: [ServerBackup on Spigot](https://www.spigotmc.org/resources/server-backup-ingame-dropbox-ftp-backup-1-8-1-19-multithreaded.79320/)
* Discord server: [ServerBackup Discord](https://discord.gg/rNzngsCWFC)

Discord server for support or suggestions: https://discord.gg/rNzngsCWFC
If you have any questions or need further assistance, please feel free to reach out to us on Discord or through the GitHub repository.
18 changes: 14 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<version>2.9.6</version>

<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -35,6 +35,11 @@
<artifactId>dropbox-core-sdk</artifactId>
<version>5.4.4</version>
</dependency>
<dependency>
<groupId>com.github.lookfirst</groupId>
<artifactId>sardine</artifactId>
<version>5.10</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand All @@ -51,10 +56,15 @@
<version>3.0.2</version>
<scope>compile</scope>
</dependency>

</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -64,7 +74,7 @@
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>de.seblii.serverbackup</shadedPattern>
<shadedPattern>main.java.serverbackup</shadedPattern>
</relocation>
</relocations>
</configuration>
Expand Down
131 changes: 0 additions & 131 deletions src/de/seblii/serverbackup/DynamicBackup.java

This file was deleted.

Loading