Auction-House/pom.xml

167 lines
6.8 KiB
XML
Raw Normal View History

2021-01-22 18:32:23 +01: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">
2021-05-15 08:23:21 +02:00
<modelVersion>4.0.0</modelVersion>
2021-01-22 18:32:23 +01:00
<groupId>ca.tweetzy</groupId>
2021-03-24 19:55:14 +01:00
<artifactId>auctionhouse</artifactId>
<version>2.10.0</version>
2021-01-22 18:32:23 +01:00
2021-02-27 22:00:22 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
2021-03-24 19:55:14 +01:00
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub kiranhart Apache Maven Packages</name>
<url>https://maven.pkg.github.com/kiranhart/Auction-House</url>
</repository>
</distributionManagement>
2021-01-22 18:32:23 +01:00
<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>
2021-05-15 08:23:21 +02:00
<annotationProcessors>
<annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</annotationProcessor>
</annotationProcessors>
2021-01-22 18:32:23 +01:00
</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.1.0</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>
2021-02-27 00:15:21 +01:00
<include>ca.tweetzy:tweetycore</include>
2021-01-22 18:32:23 +01:00
<include>com.zaxxer:HikariCP</include>
<include>org.slf4j:slf4j-api</include>
<include>org.slf4j:slf4j-nop</include>
2021-05-12 23:50:22 +02:00
<include>co.aikar:taskchain-bukkit</include>
<include>co.aikar:taskchain-core</include>
2021-01-22 18:32:23 +01:00
</includes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>ca.tweetzy.core</pattern>
<shadedPattern>${project.groupId}.auctionhouse.core</shadedPattern>
</relocation>
2021-05-12 23:50:22 +02:00
<relocation>
<pattern>co.aikar.taskchain</pattern>
<shadedPattern>${project.groupId}.auctionhouse.taskchain</shadedPattern> <!-- Replace this -->
</relocation>
2021-01-22 18:32:23 +01:00
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
2021-05-12 23:50:22 +02:00
<repository>
2021-05-15 08:23:21 +02:00
<id>github</id>
<url>https://maven.pkg.github.com/kiranhart/*</url>
2021-05-12 23:50:22 +02:00
</repository>
2021-01-22 18:32:23 +01:00
<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>
2021-05-15 08:23:21 +02:00
<repository>
<id>aikar</id>
<url>https://repo.aikar.co/content/groups/aikar/</url>
</repository>
2021-01-22 18:32:23 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2021-02-26 22:45:50 +01:00
<version>1.16.5-R0.1-SNAPSHOT</version>
2021-01-22 18:32:23 +01:00
<scope>provided</scope>
</dependency>
2021-02-26 22:45:50 +01:00
<dependency>
<groupId>ca.tweetzy</groupId>
<artifactId>tweetycore</artifactId>
<version>2.1.1</version>
2021-02-26 22:45:50 +01:00
</dependency>
2021-01-22 18:32:23 +01:00
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2021-05-15 08:23:21 +02:00
<version>1.18.20</version>
2021-01-22 18:32:23 +01:00
<scope>provided</scope>
</dependency>
2021-03-24 19:55:14 +01:00
<dependency>
2021-05-12 23:50:22 +02:00
<groupId>co.aikar</groupId>
<artifactId>taskchain-bukkit</artifactId>
<version>3.7.2</version>
2021-03-24 19:55:14 +01:00
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>3.2.0</version>
</dependency>
2021-01-22 18:32:23 +01:00
</dependencies>
</project>