-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from Relluem94s/feature/RE-183
RE-183
- Loading branch information
Showing
20 changed files
with
375 additions
and
368 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
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,3 @@ | ||
[submodule "RelluBash-Script-Collection"] | ||
path = RelluBash-Script-Collection | ||
url = https://github.com/Relluem94s/RelluBash-Script-Collection | ||
path = RelluBash-Script-Collection | ||
url = https://github.com/Relluem94s/RelluBash-Script-Collection |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,181 +1,181 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>de.relluem94</groupId> | ||
<artifactId>relluessentials</artifactId> | ||
<name>RelluEssentials</name> | ||
<version>4.2</version> | ||
<url>https://github.com/Relluem94s/RelluEssentials</url> | ||
<scm> | ||
<connection>scm:git:git@github.com:Relluem94s/RelluEssentials.git</connection> | ||
<developerConnection>scm:git:git@github.com:Relluem94s/RelluEssentials.git</developerConnection> | ||
<url>https://github.com/Relluem94s/RelluEssentials</url> | ||
</scm> | ||
<build> | ||
<sourceDirectory>src/main/java</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<filtering>true</filtering> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.12.1</version> | ||
<configuration> | ||
<source>17</source> | ||
<target>17</target> | ||
<encoding>UTF-8</encoding> | ||
<annotationProcessorPaths> | ||
<path> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>${lombok.version}</version> | ||
</path> | ||
</annotationProcessorPaths> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.4.1</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<minimizeJar>true</minimizeJar> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>META-INF/**</exclude> | ||
<exclude>LICENSE</exclude> | ||
<exclude>module-info.class</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<configuration> | ||
<encoding>UTF-8</encoding> | ||
<filters /> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>github</id> | ||
<repositories> | ||
<repository> | ||
<releases /> | ||
<snapshots /> | ||
<id>github</id> | ||
<name>RelluLib</name> | ||
<url>https://maven.pkg.github.com/Relluem94s/RelluLib</url> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<name>central</name> | ||
<url>https://repo.maven.apache.org/maven2/</url> | ||
</repository> | ||
<repository> | ||
<id>spigotmc-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>papermc</id> | ||
<url>https://repo.papermc.io/repository/maven-public/</url> | ||
</repository> | ||
<repository> | ||
<id>github</id> | ||
<name>Relluem94s</name> | ||
<url>https://maven.pkg.github.com/Relluem94s/RelluLib</url> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.20.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.10.1</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>junit-platform-engine</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<groupId>org.junit.jupiter</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>apiguardian-api</artifactId> | ||
<groupId>org.apiguardian</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.platform</groupId> | ||
<artifactId>junit-platform-runner</artifactId> | ||
<version>1.10.1</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>junit</artifactId> | ||
<groupId>junit</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-platform-launcher</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-platform-suite-api</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-platform-suite-commons</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>apiguardian-api</artifactId> | ||
<groupId>org.apiguardian</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
<distributionManagement> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub Relluem94s Apache Maven Packages</name> | ||
<url>https://maven.pkg.github.com/Relluem94s/RelluEssentials</url> | ||
</repository> | ||
</distributionManagement> | ||
<properties> | ||
<maven.compiler.release>17</maven.compiler.release> | ||
<plugin.apiVersion>1.20</plugin.apiVersion> | ||
<lombok.version>1.18.30</lombok.version> | ||
<spigot.version>1.20.1-R0.1-SNAPSHOT</spigot.version> | ||
<plugin.author>Relluem94</plugin.author> | ||
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding> | ||
<plugin.website>https://www.relluem94.de</plugin.website> | ||
<plugin.main>de.relluem94.minecraft.server.spigot.essentials.RelluEssentials</plugin.main> | ||
</properties> | ||
</project> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>de.relluem94</groupId> | ||
<artifactId>relluessentials</artifactId> | ||
<name>RelluEssentials</name> | ||
<version>4.2</version> | ||
<url>https://github.com/Relluem94s/RelluEssentials</url> | ||
<scm> | ||
<connection>scm:git:git@github.com:Relluem94s/RelluEssentials.git</connection> | ||
<developerConnection>scm:git:git@github.com:Relluem94s/RelluEssentials.git</developerConnection> | ||
<url>https://github.com/Relluem94s/RelluEssentials</url> | ||
</scm> | ||
<build> | ||
<sourceDirectory>src/main/java</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<filtering>true</filtering> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.12.1</version> | ||
<configuration> | ||
<source>17</source> | ||
<target>17</target> | ||
<encoding>UTF-8</encoding> | ||
<annotationProcessorPaths> | ||
<path> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>${lombok.version}</version> | ||
</path> | ||
</annotationProcessorPaths> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.4.1</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<minimizeJar>true</minimizeJar> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>META-INF/**</exclude> | ||
<exclude>LICENSE</exclude> | ||
<exclude>module-info.class</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<configuration> | ||
<encoding>UTF-8</encoding> | ||
<filters /> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>github</id> | ||
<repositories> | ||
<repository> | ||
<releases /> | ||
<snapshots /> | ||
<id>github</id> | ||
<name>RelluLib</name> | ||
<url>https://maven.pkg.github.com/Relluem94s/RelluLib</url> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<name>central</name> | ||
<url>https://repo.maven.apache.org/maven2/</url> | ||
</repository> | ||
<repository> | ||
<id>spigotmc-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>papermc</id> | ||
<url>https://repo.papermc.io/repository/maven-public/</url> | ||
</repository> | ||
<repository> | ||
<id>github</id> | ||
<name>Relluem94s</name> | ||
<url>https://maven.pkg.github.com/Relluem94s/RelluLib</url> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.20.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.10.1</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>junit-platform-engine</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<groupId>org.junit.jupiter</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>apiguardian-api</artifactId> | ||
<groupId>org.apiguardian</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.platform</groupId> | ||
<artifactId>junit-platform-runner</artifactId> | ||
<version>1.10.1</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>junit</artifactId> | ||
<groupId>junit</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-platform-launcher</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-platform-suite-api</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>junit-platform-suite-commons</artifactId> | ||
<groupId>org.junit.platform</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>apiguardian-api</artifactId> | ||
<groupId>org.apiguardian</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
<distributionManagement> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub Relluem94s Apache Maven Packages</name> | ||
<url>https://maven.pkg.github.com/Relluem94s/RelluEssentials</url> | ||
</repository> | ||
</distributionManagement> | ||
<properties> | ||
<maven.compiler.release>17</maven.compiler.release> | ||
<plugin.apiVersion>1.20</plugin.apiVersion> | ||
<lombok.version>1.18.30</lombok.version> | ||
<spigot.version>1.20.1-R0.1-SNAPSHOT</spigot.version> | ||
<plugin.author>Relluem94</plugin.author> | ||
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding> | ||
<plugin.website>https://www.relluem94.de</plugin.website> | ||
<plugin.main>de.relluem94.minecraft.server.spigot.essentials.RelluEssentials</plugin.main> | ||
</properties> | ||
</project> |
Oops, something went wrong.