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>
|
|
|
|
</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>
|
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>
|
2024-10-31 18:37:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit-bom</artifactId>
|
|
|
|
<version>5.11.3</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2023-05-15 16:44:14 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2024-04-13 20:54:05 +02:00
|
|
|
<version>2.0.13</version>
|
2023-05-15 16:44:14 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2024-06-27 00:44:02 +02:00
|
|
|
<version>1.5.6</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>
|
2024-10-31 18:38:16 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20240303</version>
|
|
|
|
</dependency>
|
2023-05-15 16:44:14 +02:00
|
|
|
<dependency>
|
2024-10-31 18:37:08 +01:00
|
|
|
<groupId>com.fasterxml.jackson</groupId>
|
|
|
|
<artifactId>jackson-bom</artifactId>
|
|
|
|
<version>2.18.1</version>
|
2023-05-21 19:03:28 +02:00
|
|
|
<type>pom</type>
|
2024-10-31 18:37:08 +01:00
|
|
|
<scope>import</scope>
|
2023-05-21 19:03:28 +02:00
|
|
|
</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) -->
|
2024-10-31 18:37:08 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2023-05-15 16:44:14 +02:00
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>bot</module>
|
2024-10-31 18:38:16 +01:00
|
|
|
<module>discord</module>
|
2023-05-15 16:44:14 +02:00
|
|
|
</modules>
|
2023-04-03 19:15:48 +02:00
|
|
|
</project>
|