!Better version ID

This commit is contained in:
HexedHero 2020-09-11 17:13:40 -07:00
parent bc7bfb066f
commit 3fed589b90

594
pom.xml
View File

@ -1,297 +1,297 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>net.Indyuce</groupId> <groupId>net.Indyuce</groupId>
<artifactId>MMOItems</artifactId> <artifactId>MMOItems</artifactId>
<version>6.1.2</version> <version>6.1.2</version>
<name>MMOItems</name> <name>MMOItems</name>
<description>A great item solution for your RPG server.</description> <description>A great item solution for your RPG server.</description>
<properties> <properties>
<downloadSources>false</downloadSources> <downloadSources>false</downloadSources>
<downloadJavadocs>false</downloadJavadocs> <downloadJavadocs>false</downloadJavadocs>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties> </properties>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>nexus</id> <id>nexus</id>
<name>Lumine Releases</name> <name>Lumine Releases</name>
<url>http://mvn.lumine.io/repository/maven-releases/</url> <url>http://mvn.lumine.io/repository/maven-releases/</url>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>nexus</id> <id>nexus</id>
<name>Lumine Snapshots</name> <name>Lumine Snapshots</name>
<url>http://mvn.lumine.io/repository/maven-snapshots/</url> <url>http://mvn.lumine.io/repository/maven-snapshots/</url>
</snapshotRepository> </snapshotRepository>
</distributionManagement> </distributionManagement>
<build> <build>
<finalName>${project.name}-${project.version}</finalName> <finalName>${project.name}-${project.version}</finalName>
<resources> <resources>
<resource> <resource>
<filtering>true</filtering> <filtering>true</filtering>
<directory>${basedir}/src/main/resources/</directory> <directory>${basedir}/src/main/resources/</directory>
</resource> </resource>
</resources> </resources>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
<junitArtifactName>junit:junit</junitArtifactName> <junitArtifactName>junit:junit</junitArtifactName>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
<inputEncoding>UTF-8</inputEncoding> <inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding> <outputEncoding>UTF-8</outputEncoding>
<argLine>-ea -Dfile.encoding=UTF-8</argLine> <argLine>-ea -Dfile.encoding=UTF-8</argLine>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<repositories> <repositories>
<repository> <repository>
<id>mojang</id> <id>mojang</id>
<url>https://libraries.minecraft.net/</url> <url>https://libraries.minecraft.net/</url>
</repository> </repository>
<repository> <repository>
<id>sk89q-repo</id> <id>sk89q-repo</id>
<url>https://maven.enginehub.org/repo/</url> <url>https://maven.enginehub.org/repo/</url>
</repository> </repository>
<repository> <repository>
<id>inventive-repo</id> <id>inventive-repo</id>
<url>https://repo.inventivetalent.org/content/groups/public/</url> <url>https://repo.inventivetalent.org/content/groups/public/</url>
</repository> </repository>
<repository> <repository>
<id>placeholderapi</id> <id>placeholderapi</id>
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url> <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository> </repository>
</repositories> </repositories>
<dependencies> <dependencies>
<!-- MMOs --> <!-- MMOs -->
<dependency> <dependency>
<groupId>net.Indyuce</groupId> <groupId>net.Indyuce</groupId>
<artifactId>MMOLib</artifactId> <artifactId>MMOLib</artifactId>
<version>1.3</version> <version>1.3</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/MMOLib.jar</systemPath> <systemPath>${basedir}/lib/MMOLib.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.Indyuce</groupId> <groupId>net.Indyuce</groupId>
<artifactId>mmocore</artifactId> <artifactId>mmocore</artifactId>
<version>1.4.2</version> <version>1.4.2</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/MMOCore.jar</systemPath> <systemPath>${basedir}/lib/MMOCore.jar</systemPath>
</dependency> </dependency>
<!-- Minecraft --> <!-- Minecraft -->
<dependency> <dependency>
<groupId>com.mojang</groupId> <groupId>com.mojang</groupId>
<artifactId>authlib</artifactId> <artifactId>authlib</artifactId>
<version>1.5.21</version> <version>1.5.21</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.14.4</version> <version>1.12-R1-1.16-R2</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/spigot.jar</systemPath> <systemPath>${basedir}/lib/spigot.jar</systemPath>
</dependency> </dependency>
<!-- APIs --> <!-- APIs -->
<dependency> <dependency>
<groupId>org.jetbrains</groupId> <groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId> <artifactId>annotations</artifactId>
<version>19.0.0</version> <version>19.0.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google.code.gson</groupId> <groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId> <artifactId>gson</artifactId>
<version>2.8.5</version> <version>2.8.5</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/GoogleGSON.jar</systemPath> <systemPath>${basedir}/lib/GoogleGSON.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.klyser8.iridescent</groupId> <groupId>com.github.klyser8.iridescent</groupId>
<artifactId>Iridescent</artifactId> <artifactId>Iridescent</artifactId>
<version>1.2.1</version> <version>1.2.1</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Iridescent.jar</systemPath> <systemPath>${basedir}/lib/Iridescent.jar</systemPath>
</dependency> </dependency>
<!-- Other Plugins --> <!-- Other Plugins -->
<dependency> <dependency>
<groupId>com.github.Eniripsa96</groupId> <groupId>com.github.Eniripsa96</groupId>
<artifactId>SkillAPI</artifactId> <artifactId>SkillAPI</artifactId>
<version>master-SNAPSHOT</version> <version>master-SNAPSHOT</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/SkillAPI.jar</systemPath> <systemPath>${basedir}/lib/SkillAPI.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>n3kas</groupId> <groupId>n3kas</groupId>
<artifactId>ae.api</artifactId> <artifactId>ae.api</artifactId>
<version>5.7.6</version> <version>5.7.6</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/AE-API.jar</systemPath> <systemPath>${basedir}/lib/AE-API.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.black_ixx</groupId> <groupId>org.black_ixx</groupId>
<artifactId>BossShop</artifactId> <artifactId>BossShop</artifactId>
<version>2.0.8</version> <version>2.0.8</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/BossShopPro.jar</systemPath> <systemPath>${basedir}/lib/BossShopPro.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.bekvon.bukkit</groupId> <groupId>com.bekvon.bukkit</groupId>
<artifactId>Residence</artifactId> <artifactId>Residence</artifactId>
<version>4.8.7.2</version> <version>4.8.7.2</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Residence.jar</systemPath> <systemPath>${basedir}/lib/Residence.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.Zrips</groupId> <groupId>com.Zrips</groupId>
<artifactId>CMI</artifactId> <artifactId>CMI</artifactId>
<version>8.6.5.0</version> <version>8.6.5.0</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/CMI.jar</systemPath> <systemPath>${basedir}/lib/CMI.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.herocraftonline</groupId> <groupId>com.herocraftonline</groupId>
<artifactId>heroes</artifactId> <artifactId>heroes</artifactId>
<version>1.9.3</version> <version>1.9.3</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Heroes.jar</systemPath> <systemPath>${basedir}/lib/Heroes.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.gmail.nossr50</groupId> <groupId>com.gmail.nossr50</groupId>
<artifactId>mcMMO</artifactId> <artifactId>mcMMO</artifactId>
<version>2.1.104</version> <version>2.1.104</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/mcMMO.jar</systemPath> <systemPath>${basedir}/lib/mcMMO.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>us.eunoians</groupId> <groupId>us.eunoians</groupId>
<artifactId>McRPG</artifactId> <artifactId>McRPG</artifactId>
<version>1.1.2</version> <version>1.1.2</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/McRPG.jar</systemPath> <systemPath>${basedir}/lib/McRPG.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.baks</groupId> <groupId>me.baks</groupId>
<artifactId>rpl</artifactId> <artifactId>rpl</artifactId>
<version>3.9.30</version> <version>3.9.30</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/RPGPlayerLeveling.jar</systemPath> <systemPath>${basedir}/lib/RPGPlayerLeveling.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.leothepro555</groupId> <groupId>me.leothepro555</groupId>
<artifactId>skills</artifactId> <artifactId>skills</artifactId>
<version>12.3.5</version> <version>12.3.5</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Skills.jar</systemPath> <systemPath>${basedir}/lib/Skills.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.robin</groupId> <groupId>me.robin</groupId>
<artifactId>BattleLevels</artifactId> <artifactId>BattleLevels</artifactId>
<version>6.9.1</version> <version>6.9.1</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/BattleLevels.jar</systemPath> <systemPath>${basedir}/lib/BattleLevels.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.evill4mer</groupId> <groupId>com.evill4mer</groupId>
<artifactId>RealDualWield</artifactId> <artifactId>RealDualWield</artifactId>
<version>1.1.12</version> <version>1.1.12</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/RealDualWield.jar</systemPath> <systemPath>${basedir}/lib/RealDualWield.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.arasple.mc</groupId> <groupId>me.arasple.mc</groupId>
<artifactId>TrHologram</artifactId> <artifactId>TrHologram</artifactId>
<version>1.11</version> <version>1.11</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/TrHologram.jar</systemPath> <systemPath>${basedir}/lib/TrHologram.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.gmail.filoghost</groupId> <groupId>com.gmail.filoghost</groupId>
<artifactId>HolographicDisplays</artifactId> <artifactId>HolographicDisplays</artifactId>
<version>6.9.1</version> <version>6.9.1</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/HolographicDisplays.jar</systemPath> <systemPath>${basedir}/lib/HolographicDisplays.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.lumine.xikage</groupId> <groupId>io.lumine.xikage</groupId>
<artifactId>MythicMobs</artifactId> <artifactId>MythicMobs</artifactId>
<version>4.8.0</version> <version>4.8.0</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/MythicMobs.jar</systemPath> <systemPath>${basedir}/lib/MythicMobs.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.tobiyas</groupId> <groupId>de.tobiyas</groupId>
<artifactId>RacesAndClasses</artifactId> <artifactId>RacesAndClasses</artifactId>
<version>1.2.6</version> <version>1.2.6</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/RacesAndClasses.jar</systemPath> <systemPath>${basedir}/lib/RacesAndClasses.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>ru.endlesscode</groupId> <groupId>ru.endlesscode</groupId>
<artifactId>rpginventory</artifactId> <artifactId>rpginventory</artifactId>
<version>2.3.0</version> <version>2.3.0</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/RPGInventory.jar</systemPath> <systemPath>${basedir}/lib/RPGInventory.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.sainttx.holograms</groupId> <groupId>com.sainttx.holograms</groupId>
<artifactId>holograms</artifactId> <artifactId>holograms</artifactId>
<version>2.9.1</version> <version>2.9.1</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Holograms.jar</systemPath> <systemPath>${basedir}/lib/Holograms.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.milkbowl</groupId> <groupId>net.milkbowl</groupId>
<artifactId>vault</artifactId> <artifactId>vault</artifactId>
<version>1.7.2</version> <version>1.7.2</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Vault.jar</systemPath> <systemPath>${basedir}/lib/Vault.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.sk89q.worldguard</groupId> <groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId> <artifactId>worldguard-bukkit</artifactId>
<version>7.0.1-SNAPSHOT</version> <version>7.0.1-SNAPSHOT</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/WorldGuard.jar</systemPath> <systemPath>${basedir}/lib/WorldGuard.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.sk89q.worldedit</groupId> <groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId> <artifactId>worldedit-bukkit</artifactId>
<version>7.2.0</version> <version>7.2.0</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/WorldEdit.jar</systemPath> <systemPath>${basedir}/lib/WorldEdit.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.citizensnpcs</groupId> <groupId>net.citizensnpcs</groupId>
<artifactId>citizens</artifactId> <artifactId>citizens</artifactId>
<version>2.0.25-SNAPSHOT</version> <version>2.0.25-SNAPSHOT</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/Citizens.jar</systemPath> <systemPath>${basedir}/lib/Citizens.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.inventivetalent</groupId> <groupId>org.inventivetalent</groupId>
<artifactId>glowapi</artifactId> <artifactId>glowapi</artifactId>
<version>1.4.8-SNAPSHOT</version> <version>1.4.8-SNAPSHOT</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/GlowAPI.jar</systemPath> <systemPath>${basedir}/lib/GlowAPI.jar</systemPath>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.clip</groupId> <groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId> <artifactId>placeholderapi</artifactId>
<version>2.10.7</version> <version>2.10.7</version>
<scope>system</scope> <scope>system</scope>
<systemPath>${basedir}/lib/PlaceholderAPI.jar</systemPath> <systemPath>${basedir}/lib/PlaceholderAPI.jar</systemPath>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>