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>
|
2023-07-30 22:12:47 +00:00
|
|
|
<groupId>dev.tylerm</groupId>
|
2022-05-19 01:45:38 +00:00
|
|
|
<artifactId>KenshinsHideAndSeek</artifactId>
|
2023-08-03 04:19:05 +00:00
|
|
|
<version>1.7.6</version>
|
2021-10-29 03:09:28 +00:00
|
|
|
<name>Hide and Seek Plugin</name>
|
2022-07-30 22:49:18 +00:00
|
|
|
|
2022-11-22 04:47:04 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2021-10-29 03:09:28 +00:00
|
|
|
<build>
|
2022-07-30 22:49:18 +00:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
2021-10-29 03:09:28 +00:00
|
|
|
<plugins>
|
2022-04-11 16:36:11 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-05-24 18:10:47 +00:00
|
|
|
<version>3.4.1</version>
|
2022-04-11 16:36:11 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2022-07-30 22:49:18 +00:00
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.cryptomorin.xseries</pattern>
|
2023-07-30 22:12:47 +00:00
|
|
|
<shadedPattern>dev.tylerm.depend.xseries</shadedPattern>
|
2022-07-30 22:49:18 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.zaxxer.hikari</pattern>
|
2023-07-30 22:12:47 +00:00
|
|
|
<shadedPattern>dev.tylerm.depend.hikari</shadedPattern>
|
2022-07-30 22:49:18 +00:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>com.github.cryptomorin:XSeries</include>
|
|
|
|
<include>org.xerial:sqlite-jdbc</include>
|
|
|
|
<include>org.mariadb.jdbc:mariadb-java-client</include>
|
|
|
|
<include>com.zaxxer:HikariCP</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/**</exclude>
|
2023-07-07 14:44:16 +00:00
|
|
|
<exclude>org/sqlite/native/Mac/**</exclude>
|
|
|
|
<exclude>org/sqlite/native/Linux-Android/**</exclude>
|
|
|
|
<exclude>org/sqlite/native/Linux/ppc64/**</exclude>
|
|
|
|
<exclude>org/sqlite/native/Linux/armv7/**</exclude>
|
2022-07-30 22:49:18 +00:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/services/java.sql.Driver</resource>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
2022-04-11 16:36:11 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-07-30 22:49:18 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-05-24 18:10:47 +00:00
|
|
|
<version>3.11.0</version>
|
2022-07-30 22:49:18 +00:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2021-10-29 03:09:28 +00:00
|
|
|
</plugins>
|
2022-07-30 22:49:18 +00:00
|
|
|
|
2021-10-29 03:09:28 +00:00
|
|
|
</build>
|
2022-07-30 22:49:18 +00:00
|
|
|
|
2021-10-29 03:09:28 +00:00
|
|
|
<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>
|
2023-05-24 18:10:47 +00:00
|
|
|
<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-08-18 17:45:30 +00:00
|
|
|
<version>1.13-R0.1-SNAPSHOT</version>
|
2021-10-29 03:09:28 +00:00
|
|
|
<scope>provided</scope>
|
2022-07-30 22:49:18 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
<type>jar</type>
|
2021-10-29 03:09:28 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
2023-05-24 18:10:47 +00:00
|
|
|
<version>5.0.0</version>
|
|
|
|
<scope>provided</scope>
|
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>
|
2023-02-08 23:18:41 +00:00
|
|
|
<version>3.40.1.0</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>
|
2023-07-07 14:44:16 +00:00
|
|
|
<version>9.4.0</version>
|
2022-04-11 16:36:11 +00:00
|
|
|
</dependency>
|
2022-05-08 03:54:48 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
2023-02-08 23:18:41 +00:00
|
|
|
<version>2.11.2</version>
|
2022-05-08 03:54:48 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-05-17 20:36:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2023-02-08 23:18:41 +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>
|
2023-02-08 23:18:41 +00:00
|
|
|
<version>3.1.2</version>
|
2022-05-17 20:36:35 +00:00
|
|
|
</dependency>
|
2021-10-29 03:09:28 +00:00
|
|
|
</dependencies>
|
2023-05-24 18:10:47 +00:00
|
|
|
</project>
|