ken/pom.xml

137 lines
4.9 KiB
XML
Raw Permalink Normal View History

2022-08-22 03:48:35 +00: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>org.example</groupId>
<artifactId>KenBotReborn</artifactId>
<version>1.0</version>
<properties>
2022-08-22 18:16:35 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2022-08-24 11:12:17 +00:00
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
2022-08-22 03:48:35 +00:00
</properties>
<build>
<defaultGoal>clean install</defaultGoal>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-09-02 17:33:37 +00:00
<version>3.3.0</version>
2022-08-22 18:16:35 +00:00
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>module-info.class</exclude>
</excludes>
</filter>
</filters>
<createDependencyReducedPom>false</createDependencyReducedPom>
2022-10-05 17:44:55 +00:00
<minimizeJar>false</minimizeJar>
2022-09-02 17:33:37 +00:00
<shadedArtifactAttached>true</shadedArtifactAttached>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>net.tylermurphy.ken.Ken</mainClass>
</transformer>
</transformers>
2022-08-22 18:16:35 +00:00
</configuration>
2022-08-22 03:48:35 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>dv8tion</id>
<name>m2-dv8tion</name>
<url>https://m2.dv8tion.net/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
2022-10-04 17:15:36 +00:00
<version>5.0.0-alpha.20</version>
2022-08-22 03:48:35 +00:00
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
2022-10-04 23:20:48 +00:00
<version>1.32</version>
2022-08-22 03:48:35 +00:00
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>23.0.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
2022-10-05 17:44:55 +00:00
<version>2.0.3</version>
2022-08-22 03:48:35 +00:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
2022-10-05 17:44:55 +00:00
<version>2.0.3</version>
2022-08-22 03:48:35 +00:00
</dependency>
<dependency>
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer</artifactId>
<version>1.3.78</version>
</dependency>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-youtube</artifactId>
2022-09-02 17:33:37 +00:00
<version>v3-rev20220719-2.0.0</version>
2022-08-22 03:48:35 +00:00
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
2022-09-02 17:33:37 +00:00
<version>0.10.2</version>
2022-08-22 03:48:35 +00:00
</dependency>
<dependency>
<groupId>org.w3c</groupId>
<artifactId>dom</artifactId>
<version>2.3.0-jaxb-1.0.6</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
2022-10-05 17:44:55 +00:00
<version>20220924</version>
</dependency>
<dependency>
<groupId>com.github.markozajc</groupId>
<artifactId>akiwrapper</artifactId>
<version>1.5.2</version>
2022-08-22 03:48:35 +00:00
</dependency>
2022-08-24 11:12:17 +00:00
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.0.7</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
2022-10-04 23:20:48 +00:00
<version>3.39.3.0</version>
2022-08-24 11:12:17 +00:00
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>5.0.1</version>
</dependency>
2022-08-22 03:48:35 +00:00
</dependencies>
</project>