2018-08-02 01:04:23 +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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.codemc.worldguardwrapper</groupId>
|
|
|
|
<artifactId>worldguardwrapper-implementation</artifactId>
|
2023-06-24 20:48:09 +02:00
|
|
|
<version>1.2.1-SNAPSHOT</version>
|
2022-04-10 21:34:19 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2018-08-02 01:04:23 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>worldguardwrapper-implementation-v6</artifactId>
|
|
|
|
|
|
|
|
<name>WorldGuardWrapper-Implementation-V6</name>
|
|
|
|
|
2019-01-13 12:33:47 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2022-07-30 21:24:05 +02:00
|
|
|
<id>enginehub-repo</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
2019-01-13 12:33:47 +01:00
|
|
|
<snapshots>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2018-08-02 01:04:23 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2018-11-27 08:49:46 +01:00
|
|
|
<artifactId>worldguardwrapper-api</artifactId>
|
2023-06-24 20:48:09 +02:00
|
|
|
<version>1.2.1-SNAPSHOT</version>
|
2018-11-27 08:49:46 +01:00
|
|
|
<scope>provided</scope>
|
2018-08-02 01:04:23 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
|
|
<artifactId>worldguard-legacy</artifactId>
|
|
|
|
<version>6.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-31 15:50:47 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>6.1.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-08-02 01:04:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-core</artifactId>
|
2022-04-10 21:34:19 +02:00
|
|
|
<version>6.1.3-SNAPSHOT</version>
|
2018-08-02 01:04:23 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>de.schlichtherle</groupId>
|
|
|
|
<artifactId>truezip</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>rhino</groupId>
|
|
|
|
<artifactId>js</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.thoughtworks.paranamer</groupId>
|
|
|
|
<artifactId>paranamer</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sk89q.lib</groupId>
|
|
|
|
<artifactId>jlibnoise</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>jchronic</artifactId>
|
|
|
|
</exclusion>
|
2022-04-10 21:34:19 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
</exclusion>
|
2018-08-02 01:04:23 +02:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|