136 lines
3.7 KiB
XML
136 lines
3.7 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>net.locusworks.discord</groupId>
|
|
<artifactId>eight-track</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>Eight Track</name>
|
|
|
|
<properties>
|
|
<log4j.version>2.11.2</log4j.version>
|
|
<slf4j.version>1.7.26</slf4j.version>
|
|
<nexus.repo>http://nexus.locusworks.net</nexus.repo>
|
|
<dep.check.version>5.2.2</dep.check.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<version>3.0.0-M2</version>
|
|
<configuration>
|
|
<rules>
|
|
<dependencyConvergence />
|
|
</rules>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-maven</artifactId>
|
|
<version>${dep.check.version}</version>
|
|
<configuration>
|
|
<skipProvidedScope>true</skipProvidedScope>
|
|
<skipTestScope>true</skipTestScope>
|
|
<failOnError>false</failOnError>
|
|
<versionCheckEnabled>true</versionCheckEnabled>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<finalName>DeBOTchery-${project.version}</finalName>
|
|
<transformers>
|
|
<transformer
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>net.locusworks.discord.eighttrack.main.Entry</mainClass>
|
|
</transformer>
|
|
</transformers>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/net.dv8tion/JDA2 -->
|
|
<dependency>
|
|
<groupId>net.dv8tion</groupId>
|
|
<artifactId>JDA</artifactId>
|
|
<version>4.0.0_46</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.locusworks</groupId>
|
|
<artifactId>applogger</artifactId>
|
|
<version>1.0.1-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sedmelluq</groupId>
|
|
<artifactId>lavaplayer</artifactId>
|
|
<version>1.3.22</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>nexus-proxy-public</id>
|
|
<url>${nexus.repo}/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>nexus-proxy-public</id>
|
|
<url>${nexus.repo}/repository/maven-public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>nexus-snapshot</id>
|
|
<url>${nexus.repo}/repository/locusworks-snapshot/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>nexus-release</id>
|
|
<url>${nexus.repo}/repository/locusworks-release/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
</project> |