2023-04-03 19:15:48 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-04-15 23:25:08 +02:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-04-03 19:15:48 +02:00
|
|
|
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>de.hhhammer.dchat</groupId>
|
|
|
|
<artifactId>dchat</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2023-05-15 16:44:14 +02:00
|
|
|
<packaging>pom</packaging>
|
2023-05-16 03:12:46 +02:00
|
|
|
<name>dchat</name>
|
|
|
|
<description>A ChatGPT Bot for Discord.</description>
|
|
|
|
<url>https://git.hhhammer.de/hamburghammer/dchat</url>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://git.hhhammer.de:2222/hamburghammer/dchat.git</connection>
|
|
|
|
<developerConnection>scm:git:git@git.hhhammer.de:2222/hamburghammer/dchat.git</developerConnection>
|
|
|
|
<url>https://git.hhhammer.de/hamburghammer/dchat</url>
|
|
|
|
</scm>
|
2023-04-03 19:15:48 +02:00
|
|
|
|
2023-05-16 03:06:52 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Mozilla Public License Version 2.0</name>
|
|
|
|
<url>https://www.mozilla.org/en-US/MPL/2.0/</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2023-04-03 19:15:48 +02:00
|
|
|
<properties>
|
2023-11-23 20:07:26 +01:00
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
2023-04-03 19:15:48 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2023-11-23 20:24:49 +01:00
|
|
|
<jackson.version>2.16.0</jackson.version>
|
2023-04-03 19:15:48 +02:00
|
|
|
</properties>
|
|
|
|
|
2023-05-15 16:44:14 +02:00
|
|
|
|
|
|
|
<!-- logging -->
|
2023-04-03 19:15:48 +02:00
|
|
|
<dependencies>
|
2023-04-04 00:46:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</dependency>
|
2023-04-04 01:37:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
</dependency>
|
2023-04-03 19:15:48 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2023-05-15 16:44:14 +02:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>2.0.9</version>
|
2023-05-15 16:44:14 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>1.4.11</version>
|
2023-05-15 16:44:14 +02:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>24.1.0</version>
|
2023-05-15 16:44:14 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>42.7.0</version>
|
2023-05-15 16:44:14 +02:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2023-05-21 18:48:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>5.1.0</version>
|
2023-05-21 18:48:45 +02:00
|
|
|
</dependency>
|
2023-05-21 19:03:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.javalin</groupId>
|
|
|
|
<artifactId>javalin</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>5.6.0</version>
|
2023-05-21 19:03:28 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.javacord</groupId>
|
|
|
|
<artifactId>javacord</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
2023-11-23 20:24:49 +01:00
|
|
|
<version>2.22.0</version>
|
2023-05-21 19:03:28 +02:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2023-05-15 16:44:14 +02:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2023-04-03 19:15:48 +02:00
|
|
|
<build>
|
2023-05-15 16:44:14 +02:00
|
|
|
<pluginManagement>
|
|
|
|
<!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.cloud.tools</groupId>
|
|
|
|
<artifactId>jib-maven-plugin</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</plugin>
|
2023-04-03 19:15:48 +02:00
|
|
|
|
2023-05-15 16:44:14 +02:00
|
|
|
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.11.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.22.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</plugin>
|
|
|
|
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>3.7.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.3</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>bot</module>
|
|
|
|
<module>db</module>
|
|
|
|
<module>web</module>
|
|
|
|
<module>migration</module>
|
|
|
|
</modules>
|
2023-04-03 19:15:48 +02:00
|
|
|
</project>
|