2019-04-02 20:23:52 +02:00
|
|
|
<?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.acrobot.chestshop</groupId>
|
|
|
|
<artifactId>chestshop</artifactId>
|
2021-06-09 01:47:42 +02:00
|
|
|
<version>3.12.1-SNAPSHOT</version>
|
2019-04-02 20:23:52 +02:00
|
|
|
<description>Chest-and-sign shop plugin for Bukkit</description>
|
|
|
|
<name>ChestShop</name>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/ChestShop-authors/ChestShop-3</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/ChestShop-authors/ChestShop-3.git</developerConnection>
|
|
|
|
<url>https://github.com/ChestShop-authors/ChestShop-3</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sk89q-repo</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2020-03-08 18:26:52 +01:00
|
|
|
<id>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
2019-04-02 20:23:52 +02:00
|
|
|
</repository>
|
2020-05-04 23:33:34 +02:00
|
|
|
<repository>
|
|
|
|
<id>lwcx-repo</id>
|
|
|
|
<url>https://ci.ender.zone/plugin/repository/everything/</url>
|
|
|
|
</repository>
|
2019-04-02 20:23:52 +02:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>minebench-repo</id>
|
|
|
|
<url>https://repo.minebench.de/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>local_repo</id>
|
|
|
|
<url>file://${project.basedir}/repo/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>reserve-repo</id>
|
|
|
|
<url>https://dl.bintray.com/theneweconomy/java/</url>
|
|
|
|
</repository>
|
2020-01-15 23:44:34 +01:00
|
|
|
<repository>
|
|
|
|
<id>redprotect-repo</id>
|
|
|
|
<url>https://raw.githubusercontent.com/FabioZumbi12/RedProtect/mvn-repo/</url>
|
|
|
|
</repository>
|
2020-01-15 23:32:25 +01:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2020-09-10 15:32:34 +02:00
|
|
|
<repository>
|
|
|
|
<id>NyaaCat</id>
|
|
|
|
<url>https://ci.nyaacat.com/maven/</url>
|
|
|
|
</repository>
|
2019-04-02 20:23:52 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-14 19:15:32 +02:00
|
|
|
<version>4.13.1</version>
|
2019-04-02 20:23:52 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.j256.ormlite</groupId>
|
|
|
|
<artifactId>ormlite-jdbc</artifactId>
|
|
|
|
<version>5.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-06-28 19:00:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.themoep.utils</groupId>
|
|
|
|
<artifactId>lang-bukkit</artifactId>
|
2020-09-24 16:27:39 +02:00
|
|
|
<version>1.3-SNAPSHOT</version>
|
2020-06-28 19:00:09 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.themoep</groupId>
|
2020-12-01 19:48:26 +01:00
|
|
|
<artifactId>minedown-adventure</artifactId>
|
2021-06-09 01:47:42 +02:00
|
|
|
<version>1.7.1-SNAPSHOT</version>
|
2020-06-28 19:00:09 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-01 19:48:26 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-serializer-gson</artifactId>
|
2021-09-10 23:22:16 +02:00
|
|
|
<version>4.9.1</version>
|
2020-12-01 19:48:26 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2019-04-02 20:23:52 +02:00
|
|
|
<!-- Should be kept in sync with Mojang -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
2020-06-19 22:39:23 +02:00
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
2020-03-08 18:26:52 +01:00
|
|
|
<version>1.7</version>
|
2019-04-02 20:23:52 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>Vault</artifactId>
|
|
|
|
<version>1.6.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.herocraftonline.heroes</groupId>
|
|
|
|
<artifactId>Heroes</artifactId>
|
|
|
|
<version>1.5.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.xephi</groupId>
|
|
|
|
<artifactId>authme</artifactId>
|
|
|
|
<version>5.5.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2019-08-22 14:09:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.griefcraft.lwc</groupId>
|
|
|
|
<artifactId>LWCX</artifactId>
|
2020-05-04 23:33:34 +02:00
|
|
|
<version>2.2.5</version>
|
2019-04-02 20:23:52 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.daemitus.deadbolt</groupId>
|
|
|
|
<artifactId>deadbolt</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-core</artifactId>
|
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
|
|
<artifactId>worldguard-legacy</artifactId>
|
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2020-01-15 23:32:25 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.TechFortress</groupId>
|
|
|
|
<artifactId>GriefPrevention</artifactId>
|
|
|
|
<version>16.12.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2020-01-15 23:44:34 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>br.net.fabiozumbi12.RedProtect</groupId>
|
|
|
|
<artifactId>RedProtect-Spigot</artifactId>
|
|
|
|
<version>7.6.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>br.net.fabiozumbi12.RedProtect</groupId>
|
|
|
|
<artifactId>RedProtect-Core</artifactId>
|
|
|
|
<version>7.6.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-04-02 20:23:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.webkonsept.bukkit.simplechestlock</groupId>
|
|
|
|
<artifactId>simplechestlock</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
|
|
|
<artifactId>lockette</artifactId>
|
|
|
|
<version>1.8.14</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-28 18:10:33 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>nl.rutgerkok</groupId>
|
|
|
|
<artifactId>blocklocker</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-04-02 20:23:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.bekvon.bukkit</groupId>
|
|
|
|
<artifactId>residence</artifactId>
|
|
|
|
<version>4.6.1.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.themoep.showitem</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
2020-12-01 19:48:26 +01:00
|
|
|
<version>1.6.3</version>
|
2019-04-02 20:23:52 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.tnemc</groupId>
|
|
|
|
<artifactId>Reserve</artifactId>
|
|
|
|
<version>0.1.0.10</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-09-10 15:32:34 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.crafter.mc</groupId>
|
|
|
|
<artifactId>lockettepro</artifactId>
|
|
|
|
<version>2.10-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-04-02 20:23:52 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<plugins>
|
2020-06-19 22:39:23 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<configuration>
|
|
|
|
<forceCreation>true</forceCreation>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultEntries>true</addDefaultEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Distribution-Type>${buildType}</Distribution-Type>
|
|
|
|
<Built-At>${maven.build.timestamp}</Built-At>
|
|
|
|
<Build-Jdk>${java.runtime.version}</Build-Jdk>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-04-02 20:23:52 +02:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-07-04 15:20:43 +02:00
|
|
|
<version>3.8.1</version>
|
2019-04-02 20:23:52 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2020-06-28 19:00:09 +02:00
|
|
|
<include>de.themoep:*</include>
|
|
|
|
<include>de.themoep.utils:*</include>
|
2020-12-01 19:48:26 +01:00
|
|
|
<include>net.kyori:*</include>
|
2019-04-02 20:23:52 +02:00
|
|
|
<include>org.bstats:*</include>
|
|
|
|
<include>net.gravitydevelopment.updater</include>
|
|
|
|
<include>com.j256.ormlite</include>
|
|
|
|
<include>org.apache.logging.log4j</include>
|
|
|
|
<include>javax.persistence</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
2020-06-28 19:00:09 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>de.themoep.utils.lang</pattern>
|
2020-12-01 19:48:26 +01:00
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Libs.Lang</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>de.themoep.minedown.adventure</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Libs.MineDown</shadedPattern>
|
2020-06-28 19:00:09 +02:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
2020-12-01 19:48:26 +01:00
|
|
|
<pattern>net.kyori</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Libs.Kyori</shadedPattern>
|
2020-06-28 19:00:09 +02:00
|
|
|
</relocation>
|
2019-04-02 20:23:52 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Metrics.BStats</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>net.gravitydevelopment.updater</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Updater</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.j256.ormlite</pattern>
|
2020-12-01 19:48:26 +01:00
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Libs.ORMlite</shadedPattern>
|
2019-04-02 20:23:52 +02:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>javax.persistence</pattern>
|
2020-12-01 19:48:26 +01:00
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Libs.javax.persistence</shadedPattern>
|
2019-04-02 20:23:52 +02:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
2020-06-19 22:47:50 +02:00
|
|
|
<resource>
|
|
|
|
<directory>.</directory>
|
|
|
|
<includes>
|
|
|
|
<include>LICENSE</include>
|
|
|
|
<include>README.md</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2019-04-02 20:23:52 +02:00
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<build.number>${buildNumber}</build.number>
|
2020-06-19 22:39:23 +02:00
|
|
|
<user.name>${buildType}</user.name>
|
2019-04-02 20:23:52 +02:00
|
|
|
<bukkit.plugin.version>${project.version} ${buildDescription}</bukkit.plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<profiles>
|
2019-11-04 17:26:43 +01:00
|
|
|
<profile>
|
|
|
|
<id>default</id>
|
|
|
|
<activation>
|
2019-11-04 17:42:33 +01:00
|
|
|
<property>
|
2021-06-13 16:47:41 +02:00
|
|
|
<name>!testprofile</name>
|
2019-11-04 17:42:33 +01:00
|
|
|
</property>
|
2019-11-04 17:26:43 +01:00
|
|
|
</activation>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>paper-repo</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-07-04 15:20:43 +02:00
|
|
|
<groupId>io.papermc.paper</groupId>
|
2019-11-04 17:26:43 +01:00
|
|
|
<artifactId>paper-api</artifactId>
|
2021-07-04 15:20:43 +02:00
|
|
|
<version>1.17-R0.1-SNAPSHOT</version>
|
2019-11-04 17:26:43 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
<profile>
|
2020-06-28 19:00:09 +02:00
|
|
|
<id>spigot</id>
|
2021-06-13 16:47:41 +02:00
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>testprofile</name>
|
|
|
|
<value>spigot</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2019-11-04 17:26:43 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-06-28 19:00:09 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2019-11-04 17:26:43 +01:00
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
2020-06-28 19:00:09 +02:00
|
|
|
<finalName>${project.name}-Spigot</finalName>
|
2019-11-04 17:26:43 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/Paper*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
|
2020-07-08 22:38:54 +02:00
|
|
|
<profile>
|
2021-01-28 17:18:42 +01:00
|
|
|
<id>backwards</id>
|
2021-06-13 16:47:41 +02:00
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>testprofile</name>
|
|
|
|
<value>backwards</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2020-07-08 22:38:54 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>paper-repo</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
2021-01-28 17:18:42 +01:00
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
2020-07-08 22:38:54 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-01-28 17:18:42 +01:00
|
|
|
<build>
|
|
|
|
<finalName>${project.name}-1.13.2</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/PaperLatest*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-07-08 22:38:54 +02:00
|
|
|
</profile>
|
|
|
|
|
2019-04-02 20:23:52 +02:00
|
|
|
<profile>
|
|
|
|
<id>static_build_number</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!env.BUILD_NUMBER</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2020-06-19 22:39:23 +02:00
|
|
|
<buildType>manual</buildType>
|
2019-04-02 20:23:52 +02:00
|
|
|
<buildNumber>0</buildNumber>
|
|
|
|
<buildDescription>(compiled at ${maven.build.timestamp})</buildDescription>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2019-11-04 17:26:43 +01:00
|
|
|
|
2019-04-02 20:23:52 +02:00
|
|
|
<profile>
|
|
|
|
<id>dynamic_build_number</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env.BUILD_NUMBER</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2020-06-19 22:39:23 +02:00
|
|
|
<buildType>jenkins</buildType>
|
2019-04-02 20:23:52 +02:00
|
|
|
<buildNumber>${env.BUILD_NUMBER}</buildNumber>
|
|
|
|
<buildDescription>(build ${env.BUILD_NUMBER})</buildDescription>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|