GMusicBot/pom.xml

148 lines
5.6 KiB
XML
Raw Normal View History

2017-03-19 22:54:39 +01:00
<?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>com.jagrosh</groupId>
2017-03-19 22:54:39 +01:00
<artifactId>JMusicBot</artifactId>
<version>Snapshot</version>
2017-03-19 22:54:39 +01:00
<packaging>jar</packaging>
2023-03-01 20:52:53 +01:00
2017-03-19 22:54:39 +01:00
<repositories>
2021-04-02 20:02:16 +02:00
<repository>
<id>dv8tion</id>
<name>m2-dv8tion</name>
<url>https://m2.dv8tion.net/releases</url>
</repository>
2017-03-19 22:54:39 +01:00
<repository>
<id>central</id>
<name>bintray</name>
2020-01-29 03:00:57 +01:00
<url>https://jcenter.bintray.com</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
2022-04-07 00:27:59 +02:00
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
2017-03-19 22:54:39 +01:00
</repository>
</repositories>
2023-03-01 20:52:53 +01:00
2017-03-19 22:54:39 +01:00
<dependencies>
2022-04-07 00:27:59 +02:00
<!-- Discord Dependencies -->
2017-03-19 22:54:39 +01:00
<dependency>
2023-03-01 20:52:53 +01:00
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.4.1_353</version>
2017-03-19 22:54:39 +01:00
</dependency>
2022-04-07 00:27:59 +02:00
<dependency>
<groupId>com.jagrosh</groupId>
<artifactId>jda-utilities</artifactId>
<version>3.0.5</version>
<type>pom</type>
</dependency>
2023-03-01 20:52:53 +01:00
2022-04-07 00:27:59 +02:00
<!-- Music Dependencies -->
<!-- using a fork of this to fix some issues faster -->
<!-- dependency>
2020-10-28 12:10:56 +01:00
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer</artifactId>
<version>1.3.78</version>
</dependency -->
<dependency>
<groupId>com.github.jagrosh</groupId>
<artifactId>lavaplayer</artifactId>
<version>jmusicbot-SNAPSHOT</version>
</dependency>
<!-- this is needed, but isn't actually hosted anywhere anymore... uh -->
2021-09-17 00:45:02 +02:00
<!--dependency>
2020-01-29 03:00:57 +01:00
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer-natives-extra</artifactId>
<version>1.3.13</version>
2021-09-17 00:45:02 +02:00
</dependency-->
<dependency>
<groupId>com.github.jagrosh</groupId>
<artifactId>JLyrics</artifactId>
2022-04-07 00:27:59 +02:00
<version>master-SNAPSHOT</version>
</dependency>
2023-03-01 20:52:53 +01:00
2022-04-07 00:27:59 +02:00
<!-- Misc Internal Dependencies -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
2017-03-19 22:54:39 +01:00
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.15.3</version>
</dependency>
2023-03-01 20:52:53 +01:00
2022-04-07 00:27:59 +02:00
<!-- Testing Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
2017-03-19 22:54:39 +01:00
</dependencies>
2023-03-01 20:52:53 +01:00
2017-03-19 22:54:39 +01:00
<build>
<plugins>
<plugin>
2018-12-05 08:16:39 +01:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>All</shadedClassifierName>
<artifactSet>
<includes>
<include>*:*</include>
</includes>
</artifactSet>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>reference.conf</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>com.jagrosh.jmusicbot.JMusicBot</Main-Class>
<Specification-Title>${project.artifactId}</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Implementation-Title>${project.artifactId}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
2017-03-19 22:54:39 +01:00
</build>
2023-03-01 20:52:53 +01:00
2017-03-19 22:54:39 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
2019-05-05 16:52:51 +02:00
</project>