EpicEnchants/pom.xml

136 lines
4.5 KiB
XML
Raw Normal View History

2021-07-10 23:41:20 +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>
2019-01-16 13:01:24 +01:00
<groupId>com.songoda</groupId>
2019-08-04 23:49:57 +02:00
<artifactId>EpicEnchants</artifactId>
2023-04-13 20:42:42 +02:00
<version>1.2.7</version>
2021-07-10 23:41:20 +02:00
<name>EpicEnchants</name>
<description>Unlock the potential of your weapons, tools and armor by making your own custom enchants.</description>
<url>https://songoda.com/marketplace/product/67</url>
<properties>
<java.version>1.8</java.version>
<java.release>8</java.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2019-01-16 13:01:24 +01:00
<build>
2019-08-04 23:49:57 +02:00
<defaultGoal>clean install</defaultGoal>
2019-08-05 04:42:37 +02:00
<finalName>EpicEnchants-${project.version}</finalName>
2021-07-10 23:41:20 +02:00
2019-01-16 13:01:24 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2021-07-10 23:41:20 +02:00
<version>3.8.1</version>
<configuration>
2021-07-10 23:41:20 +02:00
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release}</release>
</configuration>
</plugin>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-06-13 22:55:28 +02:00
<version>3.3.0-SNAPSHOT</version>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<configuration>
2021-07-10 23:41:20 +02:00
<minimizeJar>true</minimizeJar>
2019-08-04 23:49:57 +02:00
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<artifactSet>
<includes>
<include>com.songoda:SongodaCore</include>
2019-08-04 23:49:57 +02:00
</includes>
</artifactSet>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2019-01-16 13:01:24 +01:00
</plugins>
2021-07-10 23:41:20 +02:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2019-01-16 13:01:24 +01:00
</build>
2021-07-10 23:41:20 +02:00
2021-06-13 22:55:28 +02:00
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<repositories>
<repository>
<id>craftaro-minecraft-plugins</id>
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
</repository>
2020-03-16 20:27:10 +01:00
<repository>
2021-07-10 23:41:20 +02:00
<id>songoda-public</id>
<url>https://repo.songoda.com/repository/public/</url>
2020-03-16 20:27:10 +01:00
</repository>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<repository>
<id>jitpack.io</id>
2021-07-10 23:41:20 +02:00
<url>https://jitpack.io/</url>
2019-08-04 23:49:57 +02:00
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.craftaro</groupId>
<artifactId>CraftaroCore</artifactId>
<version>3.0.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
2019-08-04 23:49:57 +02:00
<dependency>
<groupId>org.spigotmc</groupId>
2021-12-20 18:40:22 +01:00
<artifactId>spigot-api</artifactId>
<version>1.18-R0.1-SNAPSHOT</version>
<scope>provided</scope>
2019-08-04 23:49:57 +02:00
</dependency>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.9.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
2020-09-22 05:37:13 +02:00
</project>