Clean up and improve plugin.yml and pom.xml files

This commit is contained in:
Christian Koop 2023-06-11 13:18:24 +02:00
parent 407f73e99b
commit d0dd63999b
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
4 changed files with 88 additions and 111 deletions

View File

@ -3,6 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<parent>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStackerParent</artifactId>
@ -11,97 +12,79 @@
<artifactId>UltimateStacker</artifactId>
<build>
<defaultGoal>clean install</defaultGoal>
<finalName>UltimateStacker-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>${project.build.directory}/classes/plugin.yml</file>
<replacements>
<replacement>
<token>maven-version-number</token>
<value>${project.version}</value>
</replacement>
</replacements>
<release>${java.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${project.name}-${project.version}</finalName>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
<include>com.songoda:SongodaCore</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.craftaro.core</pattern>
<shadedPattern>com.craftaro.ultimatestacker.core</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
</excludes>
</filter>
<filter>
<artifact>com.craftaro:CraftaroCore</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>**/nms/v*/**</include>
<include>**/core/third_party/**</include>
</includes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.ultimatestacker.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>papermc-repo</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<dependency>
@ -122,7 +105,7 @@
<groupId>com.craftaro</groupId>
<artifactId>UltimateStackerAPI</artifactId>
<version>1.0</version>
<scope>provided</scope>
<scope>compile</scope>
</dependency>
<dependency>

View File

@ -1,30 +1,52 @@
name: UltimateStacker
description: UltimateStacker
version: maven-version-number
softdepend: [MythicMobs, HolographicDisplays, Holograms, DecentHolograms, CMI, WorldGuard, EpicSpawners, mcMMO, WildStacker, StackMob, BentoBox, ViaVersion]
loadbefore: [WorldGuard]
main: com.craftaro.ultimatestacker.UltimateStacker
author: craftaro
name: ${project.name}
description: ${project.description}
version: ${project.version}
api-version: 1.13
main: com.craftaro.ultimatestacker.UltimateStacker
softdepend:
- MythicMobs
- HolographicDisplays
- Holograms
- DecentHolograms
- CMI
- WorldGuard
- EpicSpawners
- mcMMO
- WildStacker
- StackMob
- BentoBox
- ViaVersion
loadbefore:
- WorldGuard
author: Craftaro
website: ${project.url}
commands:
us:
description: Reloads the configuration file
default: true
aliases: [UltimateStacker]
usage: /ultimatestacker reload
aliases:
- UltimateStacker
usage: /UltimateStacker reload
permissions:
ultimatestacker.*:
UltimateStacker.*:
description: Inherits all plugin permissions
children:
ultimatestacker.admin: true
ultimatestacker.spawner.silktouch: true
ultimatestacker.spawner.nosilkdrop: true
ultimatestacker.admin:
UltimateStacker.admin: true
UltimateStacker.spawner.silktouch: true
UltimateStacker.spawner.noSilkDrop: true
UltimateStacker.admin:
description: Allows players to edit settings, reload files and other admin commands
default: op
ultimatestacker.spawner.silktouch:
UltimateStacker.spawner.silktouch:
description: Allows the player to pick up spawners using silk touch
default: op
ultimatestacker.spawner.nosilkdrop:
UltimateStacker.spawner.noSilkDrop:
description: Allows the player to receive spawners from mining with a non-silk touched pick
default: op
default: op

View File

@ -3,6 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<parent>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStackerParent</artifactId>
@ -11,7 +12,6 @@
<artifactId>UltimateStackerAPI</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<build>
<plugins>
@ -25,32 +25,8 @@
<release>${java.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>com.songoda:SongodaCore</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>**/nms/v*/**</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
@ -59,17 +35,6 @@
</resources>
</build>
<repositories>
<repository>
<id>papermc-repo</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>

11
pom.xml
View File

@ -1,9 +1,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0">
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.craftaro</groupId>
<artifactId>UltimateStackerParent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
@ -12,6 +15,10 @@
<module>Bootstrap</module>
</modules>
<name>UltimateStacker</name>
<description>The simple yet powerful stacking plugin built to meet all your stacking needs</description>
<url>https://craftaro.com/marketplace/product/16</url>
<properties>
<java.version>1.8</java.version>
<java.release>8</java.release>