2018-09-12 15:53:47 +00:00
|
|
|
<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 -->
|
2018-09-12 16:06:02 +00:00
|
|
|
<version>1.2</version>
|
2018-09-12 15:53:47 +00:00
|
|
|
<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://www.etztech.xyz</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Zlib License</name>
|
|
|
|
<url>http://opensource.org/licenses/Zlib</url>
|
|
|
|
<comments>Copyright (c) 2017 EtzTech
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
distribution.</comments>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<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.13.1-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2018-09-12 16:06:02 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>xyz.etztech</groupId>
|
|
|
|
<artifactId>EtzCore</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
|
|
|
<artifactId>Essentials</artifactId>
|
|
|
|
<version>2.14-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2018-09-12 15:53:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.5.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2018-09-12 16:06:02 +00:00
|
|
|
<repository>
|
|
|
|
<id>etztech-repo</id>
|
|
|
|
<url>http://repo.etztech.xyz</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>ess-repo</id>
|
|
|
|
<url>http://repo.ess3.net/content/groups/essentials</url>
|
|
|
|
</repository>
|
2018-09-12 15:53:47 +00:00
|
|
|
<repository>
|
|
|
|
<id>mvn-repo</id>
|
|
|
|
<url>https://mvnrepository.com/artifact/</url>
|
|
|
|
</repository>
|
|
|
|
<repository> <!-- This repo fixes issues with transitive dependencies -->
|
|
|
|
<id>jcenter</id>
|
|
|
|
<url>http://jcenter.bintray.com</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</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>1.7</source>
|
|
|
|
<target>1.7</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>
|
2018-09-14 05:08:13 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-12 15:53:47 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|