EpicBosses/api-modules/LegacyFactions/pom.xml
Charles 8a71c487f7 1.0.5
+ Fixed issue with potion effects lagging the server
+ Fixed issue with potion effect types not being compatible in 1.8.8 or other versions
+ Fixed issue with PotionEffectConverter throwing NPE if input is null
+ General Project clean up
+ Fixed /boss new autospawn command not working
2019-02-01 01:56:04 +08:00

30 lines
1.1 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">
<parent>
<artifactId>EpicBosses</artifactId>
<groupId>com.songoda.epicbosses</groupId>
<version>maven-version-number</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>LegacyFactions</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.songoda.epicbosses</groupId>
<artifactId>FactionHelper</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.redstoneore.legacyfactions</groupId>
<artifactId>LegacyFactions</artifactId>
<version>1.4.7</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>