Skip to content

Commit

Permalink
Merge pull request #86 from Relluem94s/feature/RE-183
Browse files Browse the repository at this point in the history
RE-183
  • Loading branch information
Relluem94 authored Apr 20, 2024
2 parents 537b08a + 289cb7e commit a5003c6
Show file tree
Hide file tree
Showing 20 changed files with 375 additions and 368 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# Adjust severity of non-security issues
gh-code-scanning-compat: true
# Force 0 exit code to allow SARIF file generation
# This will handover control about PR rejection to the GitHub side
# This will hand over control about PR rejection to the GitHub side
max-allowed-issues: 2147483647

# Upload the SARIF file generated in the previous step
Expand Down
4 changes: 2 additions & 2 deletions .gitmodules
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
3 changes: 1 addition & 2 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

362 changes: 181 additions & 181 deletions dependency-reduced-pom.xml
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>
Loading

0 comments on commit a5003c6

Please sign in to comment.