EpicFurnaces/pom.xml

140 lines
4.6 KiB
XML
Raw Normal View History

2022-01-21 20:06:11 +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">
<modelVersion>4.0.0</modelVersion>
2019-01-11 16:30:18 +01:00
<groupId>com.songoda</groupId>
<artifactId>EpicFurnaces</artifactId>
2021-12-20 23:36:25 +01:00
<version>4.9.0</version>
2022-01-21 20:06:11 +01:00
<name>EpicFurnaces</name>
<description>EpicFurnaces</description>
<url>https://songoda.com/marketplace/product/22</url>
<properties>
<java.version>1.8</java.version>
<java.release>8</java.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2022-01-21 20:06:11 +01:00
<issueManagement>
<url>https://support.songoda.com/servicedesk/customer/portal/3</url>
<system>Jira Service Desk</system>
</issueManagement>
<scm>
<url>https://github.com/songoda/EpicFurnaces</url>
<connection>scm:git:git:github.com/songoda/EpicFurnaces.git</connection>
</scm>
<build>
2019-01-11 16:30:18 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2022-01-21 20:06:11 +01:00
<version>3.8.1</version>
2019-01-11 16:30:18 +01:00
<configuration>
2022-01-21 20:06:11 +01:00
<source>${java.version}</source>
<target>${java.version}</target>
2022-01-21 20:06:11 +01:00
<release>${java.release}</release>
2020-04-20 15:18:15 +02:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-06-13 18:54:07 +02:00
<version>3.3.0-SNAPSHOT</version>
<executions>
<execution>
<phase>package</phase>
2022-01-21 20:06:11 +01:00
<goals>
<goal>shade</goal>
</goals>
<configuration>
2022-01-21 20:06:11 +01:00
<finalName>${project.name}-${project.version}</finalName>
<createDependencyReducedPom>false</createDependencyReducedPom>
2022-01-21 20:06:11 +01:00
<minimizeJar>true</minimizeJar>
2022-01-21 20:06:11 +01:00
<relocations>
<relocation>
<pattern>com.songoda.core</pattern>
<shadedPattern>com.songoda.epicfurnaces.core</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
2022-01-21 20:06:11 +01:00
<excludes>
2022-01-21 20:06:11 +01:00
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2019-01-11 16:30:18 +01:00
</plugins>
2022-01-21 20:06:11 +01:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2019-01-11 16:30:18 +01:00
</build>
2021-06-13 18:54:07 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2019-01-11 16:30:18 +01:00
<repositories>
2020-03-16 18:13:29 +01:00
<repository>
2022-01-21 20:06:11 +01:00
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2020-03-16 18:13:29 +01:00
</repository>
2022-01-18 14:34:38 +01:00
<repository>
2022-01-21 20:06:11 +01:00
<id>songoda-public</id>
<url>https://repo.songoda.com/repository/public/</url>
2022-01-18 14:34:38 +01:00
</repository>
2019-01-11 16:30:18 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.18.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
2019-09-10 01:27:49 +02:00
<artifactId>SongodaCore</artifactId>
2022-01-21 20:13:45 +01:00
<version>2.6.11</version>
2019-09-10 01:27:49 +02:00
<scope>compile</scope>
2019-07-20 16:04:28 +02:00
</dependency>
2020-07-06 10:27:30 +02:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>skyblock</artifactId>
2021-10-27 20:06:59 +02:00
<version>2.3.30</version>
<scope>provided</scope>
2020-07-06 10:27:30 +02:00
</dependency>
</dependencies>
2019-01-11 16:30:18 +01:00
</project>