mirror of
https://github.com/SeanOMik/TamableFoxes.git
synced 2025-02-16 21:50:09 +00:00
The update was pretty simple, all I had to do was create a new module that depended on 1.17.1 spigot. The reason for this was so the plugin was remapped to the spigot 1.17.1 obfuscated code.
45 lines
No EOL
1.5 KiB
XML
45 lines
No EOL
1.5 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>tamablefoxes-parent</artifactId>
|
|
<groupId>net.seanomik</groupId>
|
|
<version>2.1.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>tamablefoxes_v1_15_R1</artifactId>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<!--<repository>
|
|
<id>codemc-snapshots</id>
|
|
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
|
|
</repository>-->
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.seanomik</groupId>
|
|
<artifactId>tamablefoxes-util</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.wesjd</groupId>
|
|
<artifactId>anvilgui</artifactId>
|
|
<version>1.5.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |