block-util-spigot-fawe
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.projectunified</groupId>
<artifactId>block-util-spigot-fawe</artifactId>
<version>5.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>io.github.projectunified</groupId>
<artifactId>block-util-spigot</artifactId>
<version>5.0.1</version>
</parent>
<artifactId>block-util-spigot-fawe</artifactId>
<name>BlockUtil Spigot - FastAsyncWorldEdit</name>
<properties>
<java.version>11</java.version>
<mc.version>1.13.2-R0.1-20191113.201242-53</mc.version>
<fawe.version>2.6.3</fawe.version>
</properties>
<dependencies>
<dependency>
<groupId>io.github.projectunified</groupId>
<artifactId>block-util-spigot-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fastasyncworldedit</groupId>
<artifactId>FastAsyncWorldEdit-Core</artifactId>
<version>${fawe.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fastasyncworldedit</groupId>
<artifactId>FastAsyncWorldEdit-Bukkit</artifactId>
<version>${fawe.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>