Skip to content

Instantly share code, notes, and snippets.

@ducc
Created January 10, 2017 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ducc/01d825006441ec94a39e1170e09bf727 to your computer and use it in GitHub Desktop.
Save ducc/01d825006441ec94a39e1170e09bf727 to your computer and use it in GitHub Desktop.
<?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>
<!-- this section is details about your project -->
<groupId>me.monitor</groupId>
<artifactId>monitoringbotv04</artifactId>
<version>1.0</version> <!-- this is the version of your project, can be set to anything -->
<properties>
<java.version>1.8</java.version> <!-- this makes the compiler use java 8 -->
</properties>
<!-- here are the repositories to get dependencies from -->
<repositories>
<!-- this is the repository jda files are located in -->
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<!-- here are the depencies for your project -->
<dependencies>
<!-- this is the dependency for jda -->
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>3.0.BETA2_108</version>
</dependency>
<!-- this is the dependency for chatter bot api -->
<dependency>
<groupId>ca.pjer</groupId>
<artifactId>chatter-bot-api</artifactId>
<version>1.4.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- plugins will go here in the future -->
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment