TF-LibsDisguises/shared/pom.xml

42 lines
1.4 KiB
XML
Raw Normal View History

2021-12-07 03:35:30 +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">
<parent>
<artifactId>parent</artifactId>
2021-12-07 03:35:30 +00:00
<groupId>LibsDisguises</groupId>
2022-03-22 06:34:46 +00:00
<version>1.0-SNAPSHOT</version>
2022-03-22 06:30:03 +00:00
<relativePath>../pom.xml</relativePath>
2021-12-07 03:35:30 +00:00
</parent>
2021-12-11 06:25:17 +00:00
<modelVersion>4.0.0</modelVersion>
2021-12-07 03:35:30 +00:00
<artifactId>shared</artifactId>
2022-03-22 06:34:46 +00:00
<version>1.0-SNAPSHOT</version>
2021-12-25 01:30:18 +00:00
<properties>
2022-04-15 00:20:38 +00:00
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
2021-12-25 01:30:18 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2021-12-07 03:35:30 +00: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-03-31 01:28:48 +00:00
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<scope>compile</scope>
</dependency>
2021-12-07 03:35:30 +00:00
</dependencies>
</project>