2011-07-20 16:48:46 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2011-09-21 19:42:44 +02:00
|
|
|
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.onarandombox.multiversecore</groupId>
|
|
|
|
<artifactId>Multiverse-Core</artifactId>
|
2021-03-07 02:45:22 +01:00
|
|
|
<version>5.0.0-SNAPSHOT</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<name>Multiverse-Core</name>
|
|
|
|
<description>World Management Plugin</description>
|
|
|
|
<properties>
|
2021-03-07 03:25:13 +01:00
|
|
|
<java.version>1.8</java.version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<repositories>
|
2016-01-30 13:01:53 +01:00
|
|
|
<!-- Spigot -->
|
2016-03-12 21:00:29 +01:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2011-12-11 21:08:30 +01:00
|
|
|
<repository>
|
|
|
|
<id>onarandombox</id>
|
2011-12-26 02:43:30 +01:00
|
|
|
<url>http://repo.onarandombox.com/content/groups/public</url>
|
2011-12-11 21:08:30 +01:00
|
|
|
</repository>
|
2012-01-26 01:13:30 +01:00
|
|
|
<repository>
|
2015-07-14 17:40:58 +02:00
|
|
|
<id>spigot</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2012-01-26 01:13:30 +01:00
|
|
|
</repository>
|
2015-10-29 01:10:03 +01:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2016-10-27 00:49:30 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
2015-10-29 01:10:03 +01:00
|
|
|
</repository>
|
2019-01-24 05:50:47 +01:00
|
|
|
<repository>
|
|
|
|
<id>minebench-repo</id>
|
|
|
|
<url>https://repo.minebench.de/</url>
|
|
|
|
</repository>
|
2016-03-01 02:04:26 +01:00
|
|
|
<repository>
|
2020-06-06 19:36:53 +02:00
|
|
|
<id>CodeMC</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
2016-03-01 02:04:26 +01:00
|
|
|
</repository>
|
2020-12-13 16:09:16 +01:00
|
|
|
<repository>
|
|
|
|
<id>aikar</id>
|
|
|
|
<url>https://repo.aikar.co/content/groups/aikar/</url>
|
|
|
|
</repository>
|
2011-09-21 19:42:44 +02:00
|
|
|
</repositories>
|
2011-07-20 16:48:46 +02:00
|
|
|
|
2011-09-21 19:42:44 +02:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-03-07 03:11:14 +01:00
|
|
|
<version>3.8.1</version>
|
2011-09-21 19:42:44 +02:00
|
|
|
<configuration>
|
2021-03-07 03:25:13 +01:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2011-09-21 19:42:44 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-01-31 20:49:55 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2021-02-24 09:40:21 +01:00
|
|
|
<version>3.2.4</version>
|
2012-01-31 20:49:55 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2021-03-07 03:25:13 +01:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2012-02-02 03:37:33 +01:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>me.main__.util</pattern>
|
2019-02-01 03:19:23 +01:00
|
|
|
<shadedPattern>com.onarandombox.serializationconfig</shadedPattern>
|
2012-02-02 03:37:33 +01:00
|
|
|
</relocation>
|
2012-07-26 04:09:28 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>buscript</pattern>
|
2019-02-01 03:19:23 +01:00
|
|
|
<shadedPattern>com.onarandombox.buscript</shadedPattern>
|
2012-07-26 04:09:28 +02:00
|
|
|
</relocation>
|
2012-07-12 17:23:11 +02:00
|
|
|
<relocation>
|
2020-06-06 19:36:53 +02:00
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>com.onarandombox.bstats</shadedPattern>
|
2012-07-12 17:23:11 +02:00
|
|
|
</relocation>
|
2012-10-17 20:23:00 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.dumptruckman.minecraft.util.Logging</pattern>
|
|
|
|
<shadedPattern>com.onarandombox.MultiverseCore.utils.CoreLogging</shadedPattern>
|
|
|
|
</relocation>
|
2012-10-19 03:19:33 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.dumptruckman.minecraft.util.DebugLog</pattern>
|
2012-10-19 03:39:43 +02:00
|
|
|
<shadedPattern>com.onarandombox.MultiverseCore.utils.DebugFileLogger</shadedPattern>
|
2012-10-19 03:19:33 +02:00
|
|
|
</relocation>
|
2016-03-12 23:10:07 +01:00
|
|
|
<relocation>
|
2019-02-01 03:19:23 +01:00
|
|
|
<pattern>org.codehaus.jettison</pattern>
|
|
|
|
<shadedPattern>com.onarandombox.jettison</shadedPattern>
|
2016-03-12 23:10:07 +01:00
|
|
|
</relocation>
|
2019-01-25 03:22:56 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>de.themoep.idconverter</pattern>
|
2019-02-01 03:19:23 +01:00
|
|
|
<shadedPattern>com.onarandombox.idconverter</shadedPattern>
|
2019-01-25 03:22:56 +01:00
|
|
|
</relocation>
|
2020-12-13 16:09:16 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>co.aikar.commands</pattern>
|
|
|
|
<shadedPattern>com.onarandombox.acf</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>co.aikar.locales</pattern>
|
|
|
|
<shadedPattern>com.onarandombox.locales</shadedPattern>
|
|
|
|
</relocation>
|
2012-02-02 03:37:33 +01:00
|
|
|
</relocations>
|
2012-01-31 20:49:55 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-09-21 19:42:44 +02:00
|
|
|
</plugins>
|
2021-03-07 03:25:13 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2011-09-21 19:42:44 +02:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
2017-06-02 02:20:10 +02:00
|
|
|
<dependency>
|
2019-01-24 05:50:47 +01:00
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
2019-01-30 06:14:16 +01:00
|
|
|
<scope>provided</scope>
|
2017-06-02 02:20:10 +02:00
|
|
|
</dependency>
|
2012-01-31 20:49:55 +01:00
|
|
|
<!-- SerializationConfig Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.main__.util</groupId>
|
|
|
|
<artifactId>SerializationConfig</artifactId>
|
2012-11-13 19:39:22 +01:00
|
|
|
<version>1.7</version>
|
2017-07-09 15:36:02 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-01-31 20:49:55 +01:00
|
|
|
</dependency>
|
|
|
|
<!-- End of SerializationConfig Dependency -->
|
2012-10-21 02:43:58 +02:00
|
|
|
<!-- Start of Economy Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
2015-10-29 01:10:03 +01:00
|
|
|
<artifactId>VaultAPI</artifactId>
|
2019-02-01 03:21:50 +01:00
|
|
|
<version>1.7</version>
|
2019-02-01 03:19:23 +01:00
|
|
|
<scope>provided</scope>
|
2012-10-21 02:43:58 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- End of Economy Dependency -->
|
2012-02-02 05:44:15 +01:00
|
|
|
<!-- Start of CommandHandler Dependency -->
|
|
|
|
<dependency>
|
2020-12-21 17:26:14 +01:00
|
|
|
<groupId>co.aikar</groupId>
|
|
|
|
<artifactId>acf-paper</artifactId>
|
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2012-02-02 05:44:15 +01:00
|
|
|
</dependency>
|
2012-07-26 04:09:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.dumptruckman.minecraft</groupId>
|
|
|
|
<artifactId>buscript</artifactId>
|
2017-06-17 04:08:51 +02:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2012-07-26 04:09:28 +02:00
|
|
|
</dependency>
|
2012-07-12 17:23:11 +02:00
|
|
|
<dependency>
|
2020-06-06 19:36:53 +02:00
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
2020-12-20 04:17:04 +01:00
|
|
|
<version>1.8</version>
|
2015-10-23 18:36:54 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-07-12 17:23:11 +02:00
|
|
|
</dependency>
|
2012-10-17 20:23:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.dumptruckman.minecraft</groupId>
|
|
|
|
<artifactId>Logging</artifactId>
|
2019-01-30 05:54:58 +01:00
|
|
|
<version>1.1.1</version>
|
2012-10-17 20:23:00 +02:00
|
|
|
</dependency>
|
2019-01-24 05:50:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>16.0.2</version>
|
|
|
|
</dependency>
|
2019-01-24 07:00:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.themoep.idconverter</groupId>
|
|
|
|
<artifactId>mappings</artifactId>
|
|
|
|
<version>1.2-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-02-01 03:19:23 +01:00
|
|
|
|
2011-10-15 15:47:07 +02:00
|
|
|
<!-- Start of Test Dependencies -->
|
2011-09-21 19:42:44 +02:00
|
|
|
<dependency>
|
2011-12-07 06:16:42 +01:00
|
|
|
<groupId>junit</groupId>
|
2011-09-21 19:42:44 +02:00
|
|
|
<artifactId>junit</artifactId>
|
2020-12-20 07:37:36 +01:00
|
|
|
<version>4.13.1</version>
|
2019-02-01 03:19:23 +01:00
|
|
|
<scope>test</scope>
|
2011-09-21 19:42:44 +02:00
|
|
|
</dependency>
|
2011-10-15 15:47:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
2020-12-20 07:37:36 +01:00
|
|
|
<version>2.0.9</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-easymock</artifactId>
|
2020-12-20 07:37:36 +01:00
|
|
|
<version>2.0.9</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
2019-01-24 07:00:42 +01:00
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
2020-12-20 07:37:36 +01:00
|
|
|
<version>2.0.9</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
2020-12-20 07:37:36 +01:00
|
|
|
<version>4.2</version>
|
2011-10-15 15:47:07 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-02 06:53:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-09-21 19:42:44 +02:00
|
|
|
</dependencies>
|
2021-03-07 02:45:22 +01:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>benergy10</id>
|
|
|
|
<url>https://repo.benergy10.dev/repository/minecraft/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>benergy10</id>
|
|
|
|
<url>https://repo.benergy10.dev/repository/minecraft-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
2011-12-12 03:09:58 +01:00
|
|
|
</distributionManagement>
|
2011-07-30 23:42:31 +02:00
|
|
|
</project>
|