Bumps [maven-model](https://github.com/apache/maven) from 3.8.2 to 3.8.5. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.2...maven-3.8.5) --- updated-dependencies: - dependency-name: org.apache.maven:maven-model dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
138 lines
4.7 KiB
XML
138 lines
4.7 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>Hadder</groupId>
|
|
<artifactId>Hadder</artifactId>
|
|
<version>2.0.4</version>
|
|
<name>Hadder</name>
|
|
<inceptionYear>2019</inceptionYear>
|
|
<description>Hadder is a multi-purpose Discord bot.</description>
|
|
<url>https://github.com/BBN-Holding/Hadder</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU Affero General Public License v3.0</name>
|
|
<url>https://www.gnu.org/licenses/agpl-3.0.en.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.15</maven.compiler.source>
|
|
<maven.compiler.target>1.15</maven.compiler.target>
|
|
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
|
|
</properties>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>Hax#6775</id>
|
|
<name>Hax</name>
|
|
<email>hax@bbn.one</email>
|
|
<url>https://bbn.one/</url>
|
|
<timezone>Europe/Berlin</timezone>
|
|
<properties>
|
|
<picUrl>https://cdn.discordapp.com/avatars/261083609148948488/f2c9efc629ef65fffa634f0d63cd467e.webp
|
|
</picUrl>
|
|
</properties>
|
|
</developer>
|
|
<developer>
|
|
<id>Skidder#6775</id>
|
|
<name>Greg</name>
|
|
<email>skidder@bbn.one</email>
|
|
<url>https://bbn.one/</url>
|
|
<timezone>Europe/Berlin</timezone>
|
|
<properties>
|
|
<picUrl>https://cdn.discordapp.com/avatars/401817301919465482/a_f81bd03e3862de579dec59241714d86d.gif
|
|
</picUrl>
|
|
</properties>
|
|
</developer>
|
|
</developers>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jcenter</id>
|
|
<name>jcenter-bintray</name>
|
|
<url>https://jcenter.bintray.com</url>
|
|
</repository>
|
|
<repository>
|
|
<id>dv8tion</id>
|
|
<name>m2-dv8tion</name>
|
|
<url>https://m2.dv8tion.net/releases</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>3.8.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.dv8tion</groupId>
|
|
<artifactId>JDA</artifactId>
|
|
<version>4.3.0_331</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20210307</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>1.7.32</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>club.minnced</groupId>
|
|
<artifactId>discord-webhooks</artifactId>
|
|
<version>0.5.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kohsuke</groupId>
|
|
<artifactId>github-api</artifactId>
|
|
<version>1.133</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sedmelluq</groupId>
|
|
<artifactId>lavaplayer</artifactId>
|
|
<version>1.3.78</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mongodb</groupId>
|
|
<artifactId>mongodb-driver-sync</artifactId>
|
|
<version>4.3.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>15</source>
|
|
<target>15</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<finalName>Hadder-Build</finalName>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>one.bbn.hadder.Hadder</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|