kenshinshideandseek/pom.xml

133 lines
5.3 KiB
XML
Raw Normal View History

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>
2021-12-25 14:23:19 +00:00
<artifactId>HideAndSeek</artifactId>
2022-05-03 17:07:40 +00:00
<version>1.4.3</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>
<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 20:36:35 +00:00
<exclude>META-INF/*.md</exclude>
2022-04-20 00:00:53 +00:00
<exclude>META-INF</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>
<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>
<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>
<version>5.0.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.0-M1</version>
</dependency>
<dependency>
<groupId>com.github.seeseemelk</groupId>
<artifactId>MockBukkit-v1.17</artifactId>
<version>1.13.0</version>
<scope>test</scope>
</dependency>
2021-10-29 03:09:28 +00:00
</dependencies>
2021-12-25 14:24:25 +00:00
</project>