InvUI/InventoryAccess/IA/pom.xml

48 lines
1.5 KiB
XML
Raw Normal View History

2021-06-12 13:15:31 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>de.studiocode.invui</groupId>
<artifactId>InvUI-Parent</artifactId>
2022-09-30 13:25:41 +00:00
<version>0.8.1</version>
2021-06-12 13:15:31 +00:00
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
2021-08-23 14:38:57 +00:00
<artifactId>IA</artifactId>
2021-06-12 13:15:31 +00:00
<properties>
2021-12-10 16:35:42 +00:00
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
2021-06-12 13:15:31 +00:00
</properties>
2021-07-17 12:15:18 +00:00
2022-06-13 14:07:21 +00:00
<repositories>
<repository>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
</repositories>
2021-06-12 13:15:31 +00:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2022-06-13 14:07:21 +00:00
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId>
<version>4.11.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-gson</artifactId>
<version>4.11.0</version>
<scope>provided</scope>
</dependency>
2021-06-12 13:15:31 +00:00
</dependencies>
</project>