33 lines
1.2 KiB
XML
Executable File
33 lines
1.2 KiB
XML
Executable File
<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>zer01hd.zer10hdbot</groupId>
|
|
<artifactId>zer10hdbot</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>Zer10HDBot</name>
|
|
<description>A discord bot that has no main goal to be honest.</description>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>javacord-repo</id>
|
|
<url>http://repo.bastian-oppermann.de</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.btobastian.javacord</groupId>
|
|
<artifactId>javacord</artifactId>
|
|
<version>2.0.15</version>
|
|
<!-- This will use the shaded javacord which contains all required dependencies -->
|
|
<classifier>shaded</classifier>
|
|
</dependency>
|
|
|
|
<!-- A SLF4J comaptible logging framework. I would recommend to use logback -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |