GMusicBot/pom.xml

83 lines
2.9 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>
2018-02-07 17:07:37 +01:00
<version>0.1.2</version>
2017-03-19 22:54:39 +01:00
<packaging>jar</packaging>
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
2017-03-19 22:54:39 +01:00
</dependency>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
2018-02-07 17:07:37 +01:00
<version>3.5.0_335</version>
2017-03-19 22:54:39 +01:00
</dependency>
<dependency>
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer</artifactId>
2018-02-07 17:07:37 +01:00
<version>1.2.47</version>
2017-03-19 22:54:39 +01:00
</dependency>
<dependency>
<groupId>com.jagrosh</groupId>
2017-03-19 22:54:39 +01:00
<artifactId>JDA-Utilities</artifactId>
2018-02-07 17:07:37 +01:00
<version>2.0</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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.jagrosh.jmusicbot.JMusicBot</mainClass>
2017-03-19 22:54:39 +01:00
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<configuration>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</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>
</project>