WorldGuardWrapper/implementation/v7/pom.xml

132 lines
5.0 KiB
XML
Raw Normal View History

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>
<version>1.2.0-SNAPSHOT</version>
2018-08-02 01:04:23 +02:00
</parent>
<artifactId>worldguardwrapper-implementation-v7</artifactId>
<name>WorldGuardWrapper-Implementation-V7</name>
2019-01-13 12:33:47 +01:00
<repositories>
<repository>
2020-05-29 20:07:11 +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>
<version>1.2.0-SNAPSHOT</version>
2018-11-27 08:49:46 +01:00
<scope>provided</scope>
2018-08-02 01:04:23 +02:00
</dependency>
2018-11-16 18:26:31 +01:00
<dependency>
<groupId>com.sk89q.worldguard</groupId>
2020-05-29 20:07:11 +02:00
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.3</version>
2018-11-16 18:26:31 +01:00
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q</groupId>
<artifactId>commandbook</artifactId>
</exclusion>
2018-11-27 23:04:59 +01:00
<exclusion>
<groupId>com.sk89q</groupId>
<artifactId>dummypermscompat</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q.intake</groupId>
<artifactId>intake</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q</groupId>
<artifactId>squirrelid</artifactId>
</exclusion>
<exclusion>
<groupId>org.khelekore</groupId>
<artifactId>prtree</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
</exclusion>
<exclusion>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
</exclusion>
<exclusion>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</exclusion>
<exclusion>
<groupId>io.papermc</groupId>
<artifactId>paperlib</artifactId>
</exclusion>
2019-05-31 12:04:11 +02:00
<exclusion>
<groupId>com.destroystokyo.paper</groupId>
<artifactId>paper-api</artifactId>
</exclusion>
2018-11-27 23:04:59 +01:00
<exclusion>
<groupId>org.bstats.bStats-Metrics</groupId>
<artifactId>bstats-bukkit</artifactId>
</exclusion>
<exclusion>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
</exclusion>
2019-02-24 18:52:31 +01:00
<exclusion>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
</exclusion>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
<exclusion>
<groupId>de.schlichtherle</groupId>
<artifactId>truezip</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q</groupId>
<artifactId>jchronic</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</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>
</exclusions>
</dependency>
2018-08-02 01:04:23 +02:00
</dependencies>
</project>