EpicAnchors/pom.xml

158 lines
5.6 KiB
XML
Raw Normal View History

2021-06-12 15:16:07 +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>
2018-10-18 19:46:43 +02:00
<groupId>com.songoda</groupId>
<artifactId>EpicAnchors</artifactId>
2023-04-22 17:58:54 +02:00
<version>2.2.7</version>
2021-06-12 15:16:07 +02:00
<name>EpicAnchors</name>
<description>Allow your players to keep chunks loaded for a limited amount of time for a cost.</description>
<url>https://songoda.com/marketplace/product/31</url>
<properties>
<java.version>1.8</java.version>
<java.release>8</java.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2021-05-30 06:42:21 +02:00
<sonar.projectKey>songoda_EpicAnchors</sonar.projectKey>
<sonar.organization>songoda</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
2021-06-12 15:16:07 +02:00
</properties>
<issueManagement>
<url>https://support.songoda.com/servicedesk/customer/portal/3</url>
<system>Jira Service Desk</system>
</issueManagement>
<scm>
<url>https://github.com/songoda/EpicAnchors</url>
<connection>scm:git:git:github.com/songoda/EpicAnchors.git</connection>
</scm>
2018-10-18 19:46:43 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
2021-06-12 15:16:07 +02:00
2018-10-18 19:46:43 +02:00
<configuration>
2021-06-12 15:16:07 +02:00
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release}</release>
2018-10-18 19:46:43 +02:00
</configuration>
</plugin>
2021-06-26 17:15:28 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
2021-06-26 17:15:28 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${project.name}-${project.version}</finalName>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>com.songoda.epicanchors.core</shadedPattern>
</relocation>
<relocation>
<pattern>epicanchors.nms</pattern>
<shadedPattern>com.songoda.epicanchors.nms</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.jetbrains:annotations</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
<filter>
<artifact>com.songoda:epicanchors-v*</artifact>
<includes>
<include>**</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2018-10-18 19:46:43 +02:00
</plugins>
2021-06-26 17:15:28 +02:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2018-10-18 19:46:43 +02:00
</build>
2021-06-12 15:16:07 +02:00
2018-10-18 19:46:43 +02:00
<repositories>
2020-03-16 19:53:30 +01:00
<repository>
2021-06-12 15:16:07 +02:00
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2020-03-16 19:53:30 +01:00
</repository>
2021-06-12 15:16:07 +02:00
2019-07-22 05:05:46 +02:00
<repository>
2021-06-12 15:16:07 +02:00
<id>songoda-public</id>
<url>https://repo.songoda.com/repository/public/</url>
2019-07-22 05:05:46 +02:00
</repository>
2018-10-18 19:46:43 +02:00
</repositories>
2021-06-12 15:16:07 +02:00
2018-10-18 19:46:43 +02:00
<dependencies>
2021-06-26 17:15:28 +02:00
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore</artifactId>
2023-04-22 17:58:45 +02:00
<version>2.6.20</version>
2021-06-26 17:15:28 +02:00
<scope>compile</scope>
</dependency>
2021-06-12 15:16:07 +02:00
<!-- Dev dependencies -->
2018-10-18 19:46:43 +02:00
<dependency>
2021-06-12 15:16:07 +02:00
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.0.1</version>
2019-09-08 23:12:28 +02:00
<scope>compile</scope>
2018-10-18 19:46:43 +02:00
</dependency>
</dependencies>
</project>