You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
174 lines
6.2 KiB
174 lines
6.2 KiB
<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> |
|
<groupId>xyz.etztech</groupId> |
|
<artifactId>QoL</artifactId> |
|
<!-- Version is used in plugin.yml --> |
|
<version>1.16</version> |
|
<packaging>jar</packaging> |
|
|
|
<!-- Plugin Information --> |
|
<!-- Name, Description, and URL are used in plugin.yml --> |
|
<name>QoL</name> |
|
<description>A compilation plugin of various utilities.</description> |
|
<url>http://docs.etztech.xyz/qol/</url> |
|
|
|
|
|
<developers> |
|
<developer> |
|
<name>EtzTech</name> |
|
<url>http://www.etztech.xyz</url> |
|
</developer> |
|
</developers> |
|
|
|
<properties> |
|
<!-- Author and MainClass are used in plugin.yml --> |
|
<author>EtzTech</author> |
|
<mainClass>xyz.etztech.qol.QoL</mainClass> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.spigotmc</groupId> |
|
<artifactId>spigot-api</artifactId> |
|
<version>1.16.3-R0.1-SNAPSHOT</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>xyz.etztech</groupId> |
|
<artifactId>plugin-api</artifactId> |
|
<version>1.0.7</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>us.dynmap</groupId> |
|
<artifactId>dynmap-api</artifactId> |
|
<version>1.9.4</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-lang</groupId> |
|
<artifactId>commons-lang</artifactId> |
|
<version>2.6</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.discordsrv</groupId> |
|
<artifactId>discordsrv</artifactId> |
|
<version>1.23.0</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>me.lucko</groupId> |
|
<artifactId>spark-api</artifactId> |
|
<version>0.1-SNAPSHOT</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.nisovin.shopkeepers</groupId> |
|
<artifactId>ShopkeepersAPI</artifactId> |
|
<version>2.13.3</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<repositories> |
|
<repository> |
|
<id>spigotmc-repo</id> |
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url> |
|
</repository> |
|
<repository> |
|
<id>Scarsz-Nexus</id> |
|
<url>https://nexus.scarsz.me/content/groups/public/</url> |
|
</repository> |
|
<repository> |
|
<id>birbmc-repo</id> |
|
<url>https://mvn.birbmc.com</url> |
|
</repository> |
|
<repository> |
|
<id>dynmap-repo</id> |
|
<url>https://repo.mikeprimm.com/</url> |
|
</repository> |
|
<repository> |
|
<id>mvn-repo</id> |
|
<url>https://mvnrepository.com/artifact/</url> |
|
</repository> |
|
<repository> <!-- This repo fixes issues with transitive dependencies --> |
|
<id>jcenter</id> |
|
<url>https://jcenter.bintray.com</url> |
|
</repository> |
|
<repository> |
|
<id>jitpack.io</id> |
|
<url>https://jitpack.io</url> |
|
</repository> |
|
<repository> |
|
<id>sonatype-snapshots</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
</repository> |
|
<repository> |
|
<id>shopkeepers-repo</id> |
|
<url>https://nexus.lichtspiele.org/repository/releases/</url> |
|
</repository> |
|
</repositories> |
|
|
|
<build> |
|
<sourceDirectory>src/main/java</sourceDirectory> |
|
<defaultGoal>clean install</defaultGoal> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<!-- Keeping filtering at true here reduces plugin.yml redundancy! --> |
|
<filtering>true</filtering> |
|
<includes> |
|
<include>plugin.yml</include> |
|
<include>config.yml</include> |
|
</includes> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<!-- Keep filtering at false for other resources to prevent bad magic --> |
|
<filtering>false</filtering> |
|
<excludes> |
|
<exclude>**/*.java</exclude> |
|
<exclude>plugin.yml</exclude> |
|
</excludes> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>8</source> |
|
<target>8</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<!-- Build an executable JAR --> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>3.0.2</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addClasspath>true</addClasspath> |
|
<classpathPrefix>lib/</classpathPrefix> |
|
<mainClass>xyz.etztech.qol.QoL</mainClass> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>3.1.1</version> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|