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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>net.agspace.handiebot</groupId>
|
||
|
<artifactId>handiebot</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>1.7</source>
|
||
|
<target>1.7</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>jcenter</id>
|
||
|
<url>http://jcenter.bintray.com</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>jitpack.io</id>
|
||
|
<url>https://jitpack.io</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.github.austinv11</groupId>
|
||
|
<artifactId>Discord4J</artifactId>
|
||
|
<version>2.8.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sedmelluq</groupId>
|
||
|
<artifactId>lavaplayer</artifactId>
|
||
|
<version>1.2.39</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|