mirror of
https://github.com/kiranhart/Auction-House.git
synced 2024-11-22 05:25:11 +01:00
83824ae36f
Took 11 seconds
299 lines
12 KiB
XML
299 lines
12 KiB
XML
<?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>ca.tweetzy</groupId>
|
|
<artifactId>auctionhouse</artifactId>
|
|
<version>2.59.1</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>github</id>
|
|
<name>GitHub kiranhart Apache Maven Packages</name>
|
|
<url>https://maven.pkg.github.com/kiranhart/Auction-House</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<finalName>Auction House-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</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>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>shaded</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<minimizeJar>true</minimizeJar>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>ca.tweetzy:tweetycore</include>
|
|
<include>com.zaxxer:HikariCP</include>
|
|
<include>org.slf4j:slf4j-api</include>
|
|
<include>org.slf4j:slf4j-nop</include>
|
|
<include>co.aikar:taskchain-bukkit</include>
|
|
<include>co.aikar:taskchain-core</include>
|
|
<include>com.sparkjava:spark-core</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>ca.tweetzy.core</pattern>
|
|
<shadedPattern>${project.groupId}.${project.artifactId}.core</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.zaxxer.hikari</pattern>
|
|
<shadedPattern>${project.groupId}.${project.artifactId}.lib.hikari</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.slf4j</pattern>
|
|
<shadedPattern>${project.groupId}.${project.artifactId}.lib.slf4j</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>co.aikar.taskchain</pattern>
|
|
<shadedPattern>${project.groupId}.${project.artifactId}.lib.taskchain</shadedPattern> <!-- Replace this -->
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-to-ready-jars</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>C:\Users\Kiran\Documents\Development\Minecraft\Ready Jars</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>C:\Users\Kiran\Documents\Development\Minecraft\Active\Auction House\target</directory>
|
|
<include>Auction House-${project.version}.jar</include>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-files-on-build</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>C:\Dev\Minecraft\latest\plugins</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>C:\Users\Kiran\Documents\Development\Minecraft\Active\Auction House\target</directory>
|
|
<include>Auction House-${project.version}.jar</include>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>github</id>
|
|
<url>https://maven.pkg.github.com/kiranhart/*</url>
|
|
</repository>
|
|
<repository>
|
|
<id>nms-repo</id>
|
|
<url>https://repo.codemc.org/repository/nms/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>aikar</id>
|
|
<url>https://repo.aikar.co/content/groups/aikar/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<name>Lumine Releases</name>
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>neetgames</id>
|
|
<url>https://nexus.neetgames.com/repository/maven-releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>opencollab-snapshot</id>
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>mineacademy-repo</id>
|
|
<url>https://bitbucket.org/kangarko/libraries/raw/master</url>
|
|
</repository>
|
|
<repository>
|
|
<id>techscode</id>
|
|
<url>https://repo.techscode.com/repository/maven-releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>essentials-releases</id>
|
|
<url>https://repo.essentialsx.net/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>paper-repo</id>
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.18-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.tweetzy</groupId>
|
|
<artifactId>tweetycore</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mineacademy.plugin</groupId>
|
|
<artifactId>CMI-API</artifactId>
|
|
<version>8.7.8.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.essentialsx</groupId>
|
|
<artifactId>EssentialsX</artifactId>
|
|
<version>2.19.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
|
<artifactId>mcMMO</artifactId>
|
|
<version>2.1.202</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.20</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.aikar</groupId>
|
|
<artifactId>taskchain-bukkit</artifactId>
|
|
<version>3.7.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.lumine</groupId>
|
|
<artifactId>MythicLib</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.10.10</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.TechsCode</groupId>
|
|
<artifactId>UltraEconomyAPI</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.25</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-nop</artifactId>
|
|
<version>1.7.25</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.geysermc.floodgate</groupId>
|
|
<artifactId>api</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |