2022-06-30 13:19:57 +02: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>
|
|
|
|
|
2022-08-02 12:23:16 +02:00
|
|
|
<groupId>me.night</groupId>
|
2022-06-30 13:19:57 +02:00
|
|
|
<artifactId>NullValkyrie</artifactId>
|
2022-07-14 01:36:13 +02:00
|
|
|
<version>1.0.1</version>
|
2022-06-30 13:19:57 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>NullValkyrie</name>
|
|
|
|
|
|
|
|
<description>Null Valkyrie</description>
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<url>https://github.com/night0721/nullvalkyrie</url>
|
|
|
|
|
|
|
|
<build>
|
2022-07-11 15:08:53 +02:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
2022-06-30 13:19:57 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
2022-11-28 12:54:21 +01:00
|
|
|
<source>16</source>
|
|
|
|
<target>16</target>
|
2022-06-30 13:19:57 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-07-11 15:08:53 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
2022-11-13 02:04:40 +01:00
|
|
|
<outputDirectory>E:\Files\SB\plugins</outputDirectory>
|
2022-07-11 15:08:53 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-06-30 13:19:57 +02:00
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
|
|
</repository>
|
2022-11-18 18:30:25 +01:00
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>https://repo.dmulloy2.net/repository/public/</url>
|
|
|
|
</repository>
|
2022-06-30 13:19:57 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2022-11-13 02:04:40 +01:00
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>1.19.2-R0.1-SNAPSHOT</version>
|
2022-06-30 13:19:57 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-07-16 17:15:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.dv8tion</groupId>
|
|
|
|
<artifactId>JDA</artifactId>
|
|
|
|
<version>5.0.0-alpha.13</version>
|
2022-12-16 20:04:39 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>club.minnced</groupId>
|
|
|
|
<artifactId>opus-java</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2022-07-16 17:15:29 +02:00
|
|
|
</dependency>
|
2022-11-13 02:04:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
|
|
<version>3.12.11</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-11-18 18:30:25 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>4.7.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-11-25 23:50:10 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.cdimascio</groupId>
|
|
|
|
<artifactId>dotenv-java</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</dependency>
|
2022-06-30 13:19:57 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|