2022-01-08 16:57:12 +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>net.knarcraft</groupId>
|
2022-01-14 15:19:27 +01:00
|
|
|
<artifactId>PermissionSigns</artifactId>
|
2022-12-01 14:32:44 +01:00
|
|
|
<version>1.0.5-SNAPSHOT</version>
|
2022-01-08 16:57:12 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>PermissionSigns</name>
|
|
|
|
<description>A plugin for selling permissions using signs</description>
|
2022-01-14 10:30:44 +01:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU General Public License</name>
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2022-01-08 16:57:12 +01:00
|
|
|
<properties>
|
2022-11-26 15:18:57 +01:00
|
|
|
<java.version>16</java.version>
|
2022-01-08 16:57:12 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<url>git.knarcraft.net</url>
|
|
|
|
|
|
|
|
<build>
|
2022-01-14 10:30:44 +01:00
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
2022-01-08 16:57:12 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
2022-11-26 15:18:57 +01:00
|
|
|
<repository>
|
2022-11-26 15:38:28 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 15:18:57 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
2022-01-08 16:57:12 +01:00
|
|
|
<repository>
|
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
|
|
</repository>
|
2022-01-14 10:30:44 +01:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2022-11-14 02:17:06 +01:00
|
|
|
<url>https://nexus.hc.to/content/repositories/pub_releases</url>
|
2022-01-14 10:30:44 +01:00
|
|
|
</repository>
|
2022-01-08 16:57:12 +01:00
|
|
|
</repositories>
|
2022-11-26 15:18:57 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2022-11-26 15:38:28 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 15:18:57 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2022-11-26 15:38:28 +01:00
|
|
|
<id>knarcraft-repo</id>
|
2022-11-26 15:18:57 +01:00
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2022-01-08 16:57:12 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2024-01-03 19:21:40 +01:00
|
|
|
<version>1.20.4-R0.1-SNAPSHOT</version>
|
2022-01-08 16:57:12 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-01-09 12:12:55 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-06-23 20:41:17 +02:00
|
|
|
<version>24.0.1</version>
|
2022-01-09 12:12:55 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-01-14 10:30:44 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-01-03 19:21:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.knarcraft</groupId>
|
|
|
|
<artifactId>knarlib</artifactId>
|
|
|
|
<version>1.2.4</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-01-08 16:57:12 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|