2022-08-25 21:51:00 +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>
|
|
|
|
|
|
|
|
<groupId>wtf.beatrice.hidekobot</groupId>
|
|
|
|
<artifactId>HidekoBot</artifactId>
|
2022-12-19 01:41:04 +01:00
|
|
|
<version>0.5.3</version>
|
2022-08-25 21:51:00 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>16</maven.compiler.source>
|
|
|
|
<maven.compiler.target>16</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.dv8tion</groupId>
|
|
|
|
<artifactId>JDA</artifactId>
|
2022-12-19 00:07:02 +01:00
|
|
|
<version>5.0.0-beta.2</version>
|
2022-08-25 21:51:00 +02:00
|
|
|
</dependency>
|
2022-08-25 22:13:53 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2022-11-22 23:44:03 +01:00
|
|
|
<version>2.0.4</version>
|
2022-08-25 22:13:53 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2022-11-22 23:44:03 +01:00
|
|
|
<version>2.0.4</version>
|
2022-08-25 22:13:53 +02:00
|
|
|
</dependency>
|
2022-11-21 00:14:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.39.4.1</version>
|
|
|
|
</dependency>
|
2022-11-21 20:20:11 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<version>1.33</version>
|
|
|
|
</dependency>
|
2022-08-25 21:51:00 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2022-11-22 23:28:59 +01:00
|
|
|
|
2022-08-25 21:51:00 +02:00
|
|
|
<build>
|
2022-11-22 23:28:59 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2022-08-26 16:25:41 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>wtf.beatrice.hidekobot.HidekoBot</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.4.1</version>
|
|
|
|
</plugin>
|
2022-08-25 21:51:00 +02:00
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|