34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<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>
|
|
<groupId>cz.marwland.mc.features</groupId>
|
|
<artifactId>ChorusLimiter</artifactId>
|
|
<parent>
|
|
<groupId>cz.marwland.mc</groupId>
|
|
<artifactId>MarwStuff</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../../MarwStuff</relativePath>
|
|
</parent>
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<release>10</release>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cz.marwland.mc</groupId>
|
|
<artifactId>MarwCore</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.connorlinfoot</groupId>
|
|
<artifactId>BountifulAPI</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |