2021-12-25 14:24:25 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion>
|
2021-10-29 03:09:28 +00:00
|
|
|
<groupId>net.tylermurphy</groupId>
|
2022-05-19 01:45:38 +00:00
|
|
|
<artifactId>KenshinsHideAndSeek</artifactId>
|
2022-07-27 22:20:11 +00:00
|
|
|
<version>1.6.0</version>
|
2021-10-29 03:09:28 +00:00
|
|
|
<name>Hide and Seek Plugin</name>
|
2022-04-11 16:36:11 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2021-10-29 03:09:28 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
2021-12-21 00:24:24 +00:00
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
2021-10-29 03:09:28 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-04-11 16:36:11 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.cryptomorin.xseries</pattern>
|
2022-04-20 00:00:53 +00:00
|
|
|
<shadedPattern>net.tylermurphy.dependencies.xseries</shadedPattern>
|
|
|
|
</relocation>
|
2022-04-11 16:36:11 +00:00
|
|
|
</relocations>
|
|
|
|
<artifactSet>
|
2022-05-17 20:36:35 +00:00
|
|
|
<includes>
|
|
|
|
<include>com.github.cryptomorin:XSeries</include>
|
|
|
|
<include>org.xerial:sqlite-jdbc</include>
|
2022-05-17 23:35:12 +00:00
|
|
|
<include>org.mariadb.jdbc:mariadb-java-client</include>
|
2022-05-17 20:36:35 +00:00
|
|
|
<include>com.zaxxer:HikariCP</include>
|
|
|
|
</includes>
|
2022-04-11 16:36:11 +00:00
|
|
|
</artifactSet>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.MF</exclude>
|
2022-05-17 23:26:00 +00:00
|
|
|
<exclude>META-INF/*.MD</exclude>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
2022-04-13 16:02:36 +00:00
|
|
|
<exclude>sqlite-jdbc.properties</exclude>
|
2022-04-11 16:36:11 +00:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2022-04-13 16:02:36 +00:00
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/services/java.sql.Driver</resource>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2022-04-20 00:00:53 +00:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2022-04-11 16:36:11 +00:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-10-29 03:09:28 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
2021-08-22 00:08:11 +00:00
|
|
|
<repository>
|
2021-10-29 03:09:28 +00:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>https://repo.dmulloy2.net/repository/public/</url>
|
|
|
|
</repository>
|
2022-05-08 03:54:48 +00:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2021-08-22 00:08:11 +00:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
2021-10-29 03:09:28 +00:00
|
|
|
<dependency>
|
2021-08-22 00:08:11 +00:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-04-11 16:38:03 +00:00
|
|
|
<version>1.13-R0.1-SNAPSHOT</version>
|
2021-08-22 00:08:11 +00:00
|
|
|
<type>jar</type>
|
2021-10-29 03:09:28 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>4.7.0</version>
|
2021-08-22 00:08:11 +00:00
|
|
|
</dependency>
|
2021-12-26 04:46:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
2022-04-13 16:02:36 +00:00
|
|
|
<version>3.7.2</version>
|
2021-12-26 04:46:22 +00:00
|
|
|
</dependency>
|
2021-12-28 16:53:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>23.0.0</version>
|
|
|
|
</dependency>
|
2022-04-11 16:36:11 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.cryptomorin</groupId>
|
|
|
|
<artifactId>XSeries</artifactId>
|
|
|
|
<version>8.7.1</version>
|
|
|
|
</dependency>
|
2022-05-08 03:54:48 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.11.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-05-17 20:36:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2022-05-17 23:35:12 +00:00
|
|
|
<version>4.0.3</version>
|
2022-05-17 20:36:35 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-17 23:35:12 +00:00
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
|
<version>2.7.2</version>
|
2022-05-17 20:36:35 +00:00
|
|
|
</dependency>
|
2021-10-29 03:09:28 +00:00
|
|
|
</dependencies>
|
2021-12-25 14:24:25 +00:00
|
|
|
</project>
|