VeraSpigotAPI/pom.xml

39 lines
1.3 KiB
XML
Raw Normal View History

2023-04-17 23:06:34 +02: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>lol.vera.spigot</groupId>
<artifactId>VeraSpigotAPI</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2023-04-18 14:44:56 +02:00
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
2023-04-17 23:06:34 +02:00
<dependencies>
2023-04-18 14:44:56 +02:00
<dependency>
2023-05-01 12:53:06 +02:00
<groupId>com.github.azbh111</groupId>
<artifactId>spigot-1.8.8</artifactId>
<version>R</version>
2023-04-30 22:44:36 +02:00
</dependency>
2023-05-01 12:53:06 +02:00
2023-04-17 23:06:34 +02:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>