EpicVouchers/pom.xml

129 lines
4.4 KiB
XML
Raw Normal View History

2021-07-11 01:55:49 +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 22:54:07 +02:00
<groupId>com.songoda</groupId>
2018-10-19 22:33:45 +02:00
<artifactId>EpicVouchers</artifactId>
2021-07-12 16:13:59 +02:00
<version>2.1.22a2</version>
2021-07-11 01:55:49 +02:00
<name>EpicVouchers</name>
<description>Enhance your server with awesome customizable vouchers with a lot of features.</description>
<url>https://songoda.com/marketplace/product/25</url>
<properties>
<java.version>1.8</java.version>
<java.release>8</java.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2018-10-18 22:54:07 +02:00
<build>
2019-05-14 00:40:48 +02:00
<defaultGoal>clean install</defaultGoal>
2019-05-16 00:56:53 +02:00
<finalName>EpicVouchers-${project.version}</finalName>
2021-07-11 01:55:49 +02:00
2018-11-26 20:52:43 +01:00
<plugins>
2018-10-18 22:54:07 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2021-07-11 01:55:49 +02:00
<version>3.8.1</version>
2019-12-28 05:59:01 +01:00
<configuration>
2021-07-11 01:55:49 +02:00
<source>${java.version}</source>
<target>${java.version}</target>
2019-12-28 05:59:01 +01:00
</configuration>
</plugin>
2021-07-11 01:55:49 +02:00
2019-04-29 00:01:26 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-06-14 00:42:02 +02:00
<version>3.3.0-SNAPSHOT</version>
2021-07-11 01:55:49 +02:00
2019-04-29 00:01:26 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2021-07-11 01:55:49 +02:00
2019-04-29 00:01:26 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
2021-07-11 01:55:49 +02:00
2019-04-29 00:01:26 +02:00
<artifactSet>
<includes>
2019-10-09 17:24:42 +02:00
<include>com.songoda:SongodaCore</include>
2019-04-29 00:01:26 +02:00
</includes>
</artifactSet>
2021-07-11 01:55:49 +02:00
2019-04-29 00:01:26 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
2021-07-11 01:55:49 +02:00
<relocations>
<relocation>
2019-10-09 17:24:42 +02:00
<pattern>com.songoda.core</pattern>
<shadedPattern>${project.groupId}.epicvouchers.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
2018-10-18 22:54:07 +02:00
</plugins>
2021-07-11 01:55:49 +02:00
2018-10-18 22:54:07 +02:00
<resources>
<resource>
2018-11-26 20:37:49 +01:00
<directory>src/main/resources</directory>
2018-10-18 22:54:07 +02:00
<filtering>true</filtering>
</resource>
</resources>
</build>
2021-07-11 01:55:49 +02:00
2021-06-14 00:42:02 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2021-07-11 01:55:49 +02:00
2018-10-18 22:54:07 +02:00
<repositories>
2020-03-16 19:52:47 +01:00
<repository>
2021-07-11 01:55:49 +02:00
<id>songoda-public</id>
2020-09-22 05:31:31 +02:00
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 19:52:47 +01:00
</repository>
2018-10-18 22:54:07 +02:00
</repositories>
2021-07-11 01:55:49 +02:00
2018-10-18 22:54:07 +02:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2021-06-14 00:42:02 +02:00
<version>1.17</version>
<scope>provided</scope>
2018-10-18 22:54:07 +02:00
</dependency>
2021-07-11 01:55:49 +02:00
2019-04-28 22:55:50 +02:00
<dependency>
<groupId>com.songoda</groupId>
2019-10-09 17:24:42 +02:00
<artifactId>SongodaCore</artifactId>
<version>LATEST</version>
<scope>compile</scope>
2019-04-28 22:55:50 +02:00
</dependency>
2021-07-11 01:55:49 +02:00
2018-10-18 22:54:07 +02:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2021-07-11 01:55:49 +02:00
<version>1.18.20</version>
2019-04-05 15:58:46 +02:00
<scope>provided</scope>
2018-10-18 22:54:07 +02:00
</dependency>
</dependencies>
</project>