MenuAPI/pom.xml

31 lines
1.0 KiB
XML
Raw Normal View History

2021-01-21 21:03:07 +00:00
<?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>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
2021-01-21 21:03:07 +00:00
</properties>
<groupId>nl.iobyte</groupId>
<artifactId>menuapi</artifactId>
<version>1.1</version>
2021-01-21 21:03:07 +00:00
2023-10-12 18:12:34 +00:00
<distributionManagement>
<repository>
<id>sbdevelopment-repo</id>
<url>https://repo.sbdevelopment.tech/releases</url>
</repository>
</distributionManagement>
2021-01-21 21:03:07 +00:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2023-10-12 18:12:34 +00:00
<version>1.20.2-R0.1-SNAPSHOT</version>
2021-01-21 21:03:07 +00:00
<scope>provided</scope>
</dependency>
</dependencies>
</project>