mirror of
https://github.com/aikar/commands.git
synced 2026-05-31 06:11:55 +00:00
48 lines
1.5 KiB
XML
48 lines
1.5 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>acf-parent</artifactId>
|
|
<groupId>co.aikar</groupId>
|
|
<version>0.5.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>acf-bungee</artifactId>
|
|
<version><!--VERSION-->0.5.1-SNAPSHOT<!--VERSION--></version>
|
|
|
|
<name>ACF (Bungee)</name>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>sonatype-snapshots</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>co.aikar</groupId>
|
|
<artifactId>acf-core</artifactId>
|
|
<version><!--VERSION-->0.5.1-SNAPSHOT<!--VERSION--></version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-api</artifactId>
|
|
<version>1.13-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>${project.basedir}/../languages/minecraft/</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|