2020-06-15 21:39:52 +00: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>
|
|
|
|
|
2020-07-14 02:39:30 +00:00
|
|
|
<groupId>me.totalfreedom</groupId>
|
2020-06-15 21:39:52 +00:00
|
|
|
<artifactId>TFGuilds</artifactId>
|
2020-12-20 00:41:20 +00:00
|
|
|
<version>0.3.1</version>
|
2020-06-15 21:39:52 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>TFGuilds</name>
|
|
|
|
|
2020-07-13 00:40:11 +00:00
|
|
|
<description>A guilds plugin for the TotalFreedom server.</description>
|
2020-06-15 21:39:52 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-08-18 02:25:00 +00:00
|
|
|
<jar.finalName>${project.name}</jar.finalName>
|
2020-06-15 21:39:52 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-08-10 22:10:33 +00:00
|
|
|
<version>3.8.1</version>
|
2020-06-15 21:39:52 +00:00
|
|
|
<configuration>
|
2020-07-13 00:40:11 +00:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2020-06-15 21:39:52 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-08-10 22:10:33 +00:00
|
|
|
<version>3.2.4</version>
|
2020-06-15 21:39:52 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
2020-06-19 02:59:47 +00:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2020-06-15 21:39:52 +00:00
|
|
|
<repository>
|
2020-07-14 02:39:30 +00:00
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2020-06-15 21:39:52 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-07-14 02:39:30 +00:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-11-22 01:52:18 +00:00
|
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
2020-06-15 21:39:52 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-06-19 02:59:47 +00:00
|
|
|
<dependency>
|
2020-12-04 02:42:57 +00:00
|
|
|
<groupId>com.github.AtlasMediaGroup</groupId>
|
2020-06-19 02:59:47 +00:00
|
|
|
<artifactId>TotalFreedomMod</artifactId>
|
2020-12-04 02:42:57 +00:00
|
|
|
<version>development-0be2aa718f-1</version>
|
2020-08-10 22:10:33 +00:00
|
|
|
<scope>provided</scope>
|
2020-06-19 02:59:47 +00:00
|
|
|
</dependency>
|
2020-08-26 18:23:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2020-11-30 01:46:21 +00:00
|
|
|
<version>1.18.16</version>
|
2020-08-26 18:23:26 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-06-15 21:39:52 +00:00
|
|
|
</dependencies>
|
2020-07-14 23:22:37 +00:00
|
|
|
</project>
|