2021-11-08 20:53:13 +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>
|
|
|
|
<artifactId>HideAndSeek</artifactId>
|
|
|
|
<version>1.3.1</version>
|
|
|
|
<name>Hide and Seek Plugin</name>
|
|
|
|
<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>
|
|
|
|
</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>
|
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>
|
|
|
|
<version>1.17.1-R0.1-SNAPSHOT</version>
|
|
|
|
<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-10-29 03:09:28 +00:00
|
|
|
</dependencies>
|
2021-08-13 20:49:36 +00:00
|
|
|
</project>
|