2016-11-26 03:12:18 +01:00
|
|
|
|
|
|
|
<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>fr.pandacube.pandacube</groupId>
|
|
|
|
<artifactId>pandacube-parent</artifactId>
|
|
|
|
<version>1.0-beta4</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>pandacube-util</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>PandacubeUtil</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-11-26 19:00:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
|
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
|
|
<version>1.11-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-11-26 03:12:18 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.local_dependencies</groupId>
|
|
|
|
<artifactId>bungeeperms</artifactId>
|
|
|
|
<version>3.0-alpha1-modif</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/../libs/BungeePerms-3.0-alpha1-modif.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|