2023-06-08 19:21:14 +01: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>
|
|
|
|
|
|
|
|
<groupId>io.natfan</groupId>
|
|
|
|
<artifactId>nCoords</artifactId>
|
2023-06-08 19:41:35 +01:00
|
|
|
<version>1.0</version>
|
2023-06-08 19:21:14 +01:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>18</maven.compiler.source>
|
|
|
|
<maven.compiler.target>18</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.19.4-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2023-06-08 19:41:35 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>gitea</id>
|
|
|
|
<url>https://git.natfan.io/api/packages/n/maven</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>gitea</id>
|
|
|
|
<url>https://git.natfan.io/api/packages/n/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>gitea</id>
|
|
|
|
<url>https://git.natfan.io/api/packages/n/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2023-06-08 19:21:14 +01:00
|
|
|
</project>
|