mirror of
https://github.com/CodeMC/WorldGuardWrapper.git
synced 2024-11-10 13:15:19 +01:00
487394e256
When the sk89q repository is fixed, only worlguard-legacy version 7.0.0-SNAPSHOT is needed.
157 lines
6.2 KiB
XML
157 lines
6.2 KiB
XML
<?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.0.3-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>worldguardwrapper-implementation-v7</artifactId>
|
|
|
|
<name>WorldGuardWrapper-Implementation-V7</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>worldguardwrapper-implementation-interface</artifactId>
|
|
<version>1.0.3-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-legacy</artifactId>
|
|
<version>7.0.0-20181117.063337-9</version> <!-- Manually set version -->
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>commandbook</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency> <!-- Override worldguard-core to manually set version -->
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-core</artifactId>
|
|
<version>7.0.0-20181117.063337-9</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.sk89q.intake</groupId>
|
|
<artifactId>intake</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>squirrelid</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-core</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>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency> <!-- Override worldedit-bukkit to manually set version -->
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
<version>7.0.0-20181118.055910-28</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>dummypermscompat</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.papermc</groupId>
|
|
<artifactId>paperlib</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency> <!-- Override worldedit-core to manually set version -->
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
<artifactId>worldedit-core</artifactId>
|
|
<version>7.0.0-20181118.055910-28</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>de.schlichtherle</groupId>
|
|
<artifactId>truezip</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>rhino</groupId>
|
|
<artifactId>js</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</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>
|
|
<exclusion>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|