chatapi/pom.xml

34 lines
1.2 KiB
XML
Raw Normal View History

<?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>eu.m724</groupId>
<artifactId>chatapi</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
2024-08-31 12:08:56 +02:00
<!-- https://mvnrepository.com/artifact/org.apache.groovy/groovy -->
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<version>4.0.22</version>
</dependency>
2024-08-31 12:08:56 +02:00
<!-- https://mvnrepository.com/artifact/org.json/json -->
<!-- TODO stop using this -->
2024-08-28 15:09:38 +02:00
<dependency>
2024-08-31 12:08:56 +02:00
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
2024-08-28 15:09:38 +02:00
</dependency>
</dependencies>
</project>