mirror of
https://github.com/SangeloDev/Unique.git
synced 2024-11-22 08:12:41 +00:00
64 lines
2 KiB
XML
64 lines
2 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>
|
|||
|
|
|||
|
<groupId>space.sangelo</groupId>
|
|||
|
<artifactId>unique</artifactId>
|
|||
|
<version>1.0.0</version>
|
|||
|
<packaging>jar</packaging>
|
|||
|
|
|||
|
<name>Unique</name>
|
|||
|
|
|||
|
<description>Escape the ordinary – Be Unique!</description>
|
|||
|
<properties>
|
|||
|
<java.version>17</java.version>
|
|||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
|
</properties>
|
|||
|
<url>https://sangelo.space</url>
|
|||
|
|
|||
|
<build>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-compiler-plugin</artifactId>
|
|||
|
<version>3.8.1</version>
|
|||
|
<configuration>
|
|||
|
<release>17</release>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
<resources>
|
|||
|
<resource>
|
|||
|
<directory>src/main/resources</directory>
|
|||
|
<filtering>true</filtering>
|
|||
|
</resource>
|
|||
|
</resources>
|
|||
|
</build>
|
|||
|
|
|||
|
<repositories>
|
|||
|
<repository>
|
|||
|
<id>papermc</id>
|
|||
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|||
|
</repository>
|
|||
|
<repository>
|
|||
|
<id>sonatype</id>
|
|||
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|||
|
</repository>
|
|||
|
<repository>
|
|||
|
<id>jitpack.io</id>
|
|||
|
<url>https://jitpack.io</url>
|
|||
|
</repository>
|
|||
|
</repositories>
|
|||
|
|
|||
|
<dependencies>
|
|||
|
<dependency>
|
|||
|
<groupId>io.papermc.paper</groupId>
|
|||
|
<artifactId>paper-api</artifactId>
|
|||
|
<version>1.18.2-R0.1-SNAPSHOT</version>
|
|||
|
<scope>provided</scope>
|
|||
|
</dependency>
|
|||
|
</dependencies>
|
|||
|
</project>
|