forked from lokka30/PhantomWorlds
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,495 additions
and
1,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
/target/ | ||
/.idea | ||
._.git | ||
# IntelliJ IDEA | ||
target/ | ||
.idea | ||
*.iml | ||
|
||
# macOS | ||
._.git | ||
.DS_Store |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
# PhantomWorlds | ||
|
||
## About | ||
* A [SpigotMC](https://www.spigotmc.org/) plugin which allows administrators to create, manage and teleport to whatever | ||
worlds they wish. | ||
|
||
* A [SpigotMC](https://www.spigotmc.org/) plugin which allows administrators to create, manage and | ||
teleport to whatever worlds they wish. | ||
|
||
## Learn more | ||
|
||
* Click [here](https://www.spigotmc.org/resources/phantomworlds.84099/) to visit the SpigotMC resource page for | ||
PhantomWorlds, where you can learn more and download the resource if you wish. :) | ||
* Click [here](https://www.spigotmc.org/resources/phantomworlds.84099/) to visit the SpigotMC | ||
resource page for PhantomWorlds, where you can learn more and download the resource if you | ||
wish. :) | ||
* Click [here](https://github.com/lokka30/PhantomWorlds/wiki) to visit the Wiki. | ||
|
||
## Contributors | ||
* Please see the [Credits](https://github.com/lokka30/PhantomWorlds/wiki/Credits) - thank you very much to all contributors to the resource! ❤ | ||
|
||
* Please see the [Credits](https://github.com/lokka30/PhantomWorlds/wiki/Credits) - thank you very | ||
much to all contributors to the resource! ❤ | ||
|
||
## License | ||
|
||
* Licensed under `GNU AGPL v3.0` (see [LICENSE.md](https://github.com/lokka30/PhantomWorlds/blob/master/LICENSE.md)). | ||
* Licensed under `GNU AGPL v3.0` ( | ||
see [LICENSE.md](https://github.com/lokka30/PhantomWorlds/blob/master/LICENSE.md)). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,109 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
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> | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
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>me.lokka30</groupId> | ||
<artifactId>PhantomWorlds</artifactId> | ||
<version>2.0.2</version> | ||
<groupId>me.lokka30</groupId> | ||
<artifactId>PhantomWorlds</artifactId> | ||
<version>2.0.3</version> | ||
|
||
<name>PhantomWorlds</name> | ||
<description>A SpigotMC plugin which allows administrators to create, manage and teleport to whatever worlds they wish.</description> | ||
<name>PhantomWorlds</name> | ||
<description>The Robust World Manager for Minecraft Servers</description> | ||
|
||
<properties> | ||
<java.version>1.8</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<properties> | ||
<java.version>1.8</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>CodeMC</id> | ||
<url>https://repo.codemc.org/repository/maven-public</url> | ||
</repository> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
</repositories> | ||
<repositories> | ||
<repository> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>CodeMC</id> | ||
<url>https://repo.codemc.org/repository/maven-public</url> | ||
</repository> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.17.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.lokka30</groupId> | ||
<artifactId>MicroLib</artifactId> | ||
<version>3.2.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bstats</groupId> | ||
<artifactId>bstats-bukkit</artifactId> | ||
<version>2.2.1</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
<version>22.0.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.17.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.lokka30</groupId> | ||
<artifactId>MicroLib</artifactId> | ||
<version>3.2.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bstats</groupId> | ||
<artifactId>bstats-bukkit</artifactId> | ||
<version>3.0.0</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
<version>23.0.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.4</version> | ||
<configuration> | ||
<relocations> | ||
<relocation> | ||
<pattern>me.lokka30.microlib</pattern> | ||
<shadedPattern>me.lokka30.phantomworlds.microlib</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.bstats</pattern> | ||
<shadedPattern>me.lokka30.phantomworlds.bstats</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<createDependencyReducedPom>false</createDependencyReducedPom> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
<build> | ||
<defaultGoal>clean package</defaultGoal> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.4</version> | ||
<configuration> | ||
<relocations> | ||
<relocation> | ||
<pattern>me.lokka30.microlib</pattern> | ||
<shadedPattern>me.lokka30.phantomworlds.lib.microlib</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.bstats</pattern> | ||
<shadedPattern>me.lokka30.phantomworlds.lib.bstats</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
<minimizeJar>true</minimizeJar> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<createDependencyReducedPom>false</createDependencyReducedPom> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
</project> |
Oops, something went wrong.