Skip to content

Commit

Permalink
v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lokka30 committed Apr 16, 2022
1 parent 055f714 commit b84cb72
Show file tree
Hide file tree
Showing 25 changed files with 1,495 additions and 1,318 deletions.
11 changes: 8 additions & 3 deletions .gitignore
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
22 changes: 0 additions & 22 deletions CHANGELOG.md

This file was deleted.

966 changes: 414 additions & 552 deletions LICENSE.md

Large diffs are not rendered by default.

12 changes: 0 additions & 12 deletions PhantomWorlds.iml

This file was deleted.

17 changes: 11 additions & 6 deletions README.md
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)).
198 changes: 100 additions & 98 deletions pom.xml
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>
Loading

0 comments on commit b84cb72

Please sign in to comment.