GMusicBot/pom.xml

130 lines
5 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>
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
2020-01-29 03:00:57 +01:00
<url>https://jcenter.bintray.com</url>
</repository>
<repository>
<id>bintray-sedmelluq-com.sedmelluq</id>
<name>bintray</name>
<url>https://dl.bintray.com/sedmelluq/com.sedmelluq</url>
2017-03-19 22:54:39 +01:00
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2017-03-19 22:54:39 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
2020-10-27 21:44:58 +01:00
<version>4.2.0_212</version>
2017-03-19 22:54:39 +01:00
</dependency>
<!--dependency>
2017-03-19 22:54:39 +01:00
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer</artifactId>
2020-07-04 23:02:19 +02:00
<version>1.3.50</version>
</dependency-->
<dependency>
<groupId>com.github.Devoxin</groupId>
<artifactId>lavaplayer</artifactId>
<version>1.3.59</version>
2020-01-29 03:00:57 +01:00
</dependency>
<dependency>
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer-natives-extra</artifactId>
<version>1.3.13</version>
2017-03-19 22:54:39 +01:00
</dependency>
<dependency>
<groupId>com.jagrosh</groupId>
2018-02-07 22:33:26 +01:00
<artifactId>jda-utilities</artifactId>
<version>3.0.4</version>
2018-02-07 22:33:26 +01:00
<type>pom</type>
</dependency>
<dependency>
2018-12-05 06:43:13 +01:00
<groupId>com.jagrosh</groupId>
<artifactId>JLyrics</artifactId>
2019-11-10 00:36:53 +01:00
<version>0.4</version>
</dependency>
<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>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>
<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>
<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>