2019-10-02 09:42:00 +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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.fpghoti</groupId>
|
2020-05-29 20:20:53 +00:00
|
|
|
<artifactId>Biscuit</artifactId>
|
2020-10-02 21:38:33 +00:00
|
|
|
<version>1.8</version>
|
2019-10-02 09:42:00 +00:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
2020-06-05 04:37:10 +00:00
|
|
|
<encoding>UTF-8</encoding>
|
2019-10-02 09:42:00 +00:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
2020-06-05 04:37:10 +00:00
|
|
|
<encoding>UTF-8</encoding>
|
2019-10-02 09:42:00 +00:00
|
|
|
<archive>
|
|
|
|
<manifest>
|
2020-05-29 20:20:53 +00:00
|
|
|
<mainClass>com.fpghoti.biscuit.Main</mainClass>
|
2019-10-02 09:42:00 +00:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-07-15 06:48:50 +00:00
|
|
|
<version>3.2.4</version>
|
2019-10-02 09:42:00 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-06-05 04:37:10 +00:00
|
|
|
<encoding>UTF-8</encoding>
|
2019-10-02 09:42:00 +00:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2020-07-15 06:48:50 +00:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>org.tuxdude.logback.extensions:logback-colorizer</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
</filter>
|
2020-07-22 07:40:56 +00:00
|
|
|
<filter>
|
|
|
|
<artifact>commons-logging:commons-logging</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
</filter>
|
2020-07-15 06:48:50 +00:00
|
|
|
</filters>
|
2019-10-02 09:42:00 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
2020-05-29 20:20:53 +00:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>bungeecord-repo</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
2019-10-02 09:42:00 +00:00
|
|
|
<repository>
|
|
|
|
<id>oss.sonatype.org</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jcenter</id>
|
|
|
|
<name>jcenter-bintray</name>
|
2020-05-29 20:20:53 +00:00
|
|
|
<url>https://jcenter.bintray.com</url>
|
2019-10-02 09:42:00 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>soluvas-public-thirdparty</id>
|
|
|
|
<url>http://nexus.bippo.co.id/nexus/content/repositories/soluvas-public-thirdparty/</url>
|
|
|
|
</repository>
|
2020-06-05 04:37:10 +00:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2019-10-02 09:42:00 +00:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
2020-05-29 20:20:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.15.1-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.15.1-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
|
|
|
<version>1.15-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-10-02 09:42:00 +00:00
|
|
|
</dependencies>
|
2020-06-05 04:37:10 +00:00
|
|
|
<properties>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2019-10-02 09:42:00 +00:00
|
|
|
</project>
|