126 lines
4.4 KiB
XML
126 lines
4.4 KiB
XML
|
<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>strange-bot</groupId>
|
||
|
<artifactId>strange-bot</artifactId>
|
||
|
<version>1.2.0</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<configuration>
|
||
|
<source>8</source>
|
||
|
<target>8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<!-- Build an executable JAR -->
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<addClasspath>true</addClasspath>
|
||
|
<classpathPrefix>lib/</classpathPrefix>
|
||
|
<mainClass>bot.Bot</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<properties>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>jcenter</id>
|
||
|
<name>jcenter-bintray</name>
|
||
|
<url>https://jcenter.bintray.com</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>m2-dv8tion</id>
|
||
|
<name>m2-dv8tion</name>
|
||
|
<url>https://m2.dv8tion.net/releases</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>jfrog-duncte123</id>
|
||
|
<name>jfrog-duncte123</name>
|
||
|
<url>https://duncte123.jfrog.io/artifactory/maven</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>net.dv8tion</groupId>
|
||
|
<artifactId>JDA</artifactId>
|
||
|
<version>4.3.0_307</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jagrosh</groupId>
|
||
|
<artifactId>jda-utilities</artifactId>
|
||
|
<version>3.0.5</version>
|
||
|
<scope>compile</scope>
|
||
|
<type>pom</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>me.duncte123</groupId>
|
||
|
<artifactId>botCommons</artifactId>
|
||
|
<version>2.1.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
<version>1.2.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>mongodb-driver-sync</artifactId>
|
||
|
<version>4.2.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.github.cdimascio</groupId>
|
||
|
<artifactId>dotenv-java</artifactId>
|
||
|
<version>2.2.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>club.minnced</groupId>
|
||
|
<artifactId>discord-webhooks</artifactId>
|
||
|
<version>0.5.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.groovy</groupId>
|
||
|
<artifactId>groovy</artifactId>
|
||
|
<version>3.0.7</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.jodah</groupId>
|
||
|
<artifactId>expiringmap</artifactId>
|
||
|
<version>0.5.9</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|