LibsDisguises/shared/pom.xml

43 lines
1.4 KiB
XML
Raw Normal View History

2021-12-07 04:35:30 +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">
<parent>
<artifactId>parent</artifactId>
2021-12-07 04:35:30 +01:00
<groupId>LibsDisguises</groupId>
2022-03-22 07:34:46 +01:00
<version>1.0-SNAPSHOT</version>
2022-03-22 07:30:03 +01:00
<relativePath>../pom.xml</relativePath>
2021-12-07 04:35:30 +01:00
</parent>
2021-12-11 07:25:17 +01:00
<modelVersion>4.0.0</modelVersion>
2021-12-07 04:35:30 +01:00
<artifactId>shared</artifactId>
2022-03-22 07:34:46 +01:00
<version>1.0-SNAPSHOT</version>
2021-12-25 02:30:18 +01:00
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2021-12-07 04:35:30 +01:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
</dependency>
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
</dependency>
2022-06-03 17:59:11 +02:00
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>3.2.37</version>
<scope>provided</scope>
</dependency>
2021-12-07 04:35:30 +01:00
</dependencies>
</project>