2024-05-28 17:26:38 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-05-30 14:01:06 +02:00
|
|
|
<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">
|
2024-05-28 17:26:38 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>eu.m724</groupId>
|
|
|
|
<artifactId>wtapi</artifactId>
|
2024-09-24 19:54:38 +02:00
|
|
|
<version>0.8.0</version>
|
2024-05-28 17:26:38 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
</properties>
|
2024-09-23 17:59:24 +02:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GPL-3.0-or-later</name>
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
<comments>The GNU General Public License is a free, copyleft license.</comments>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2024-05-30 13:54:02 +02:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2024-09-23 17:59:24 +02:00
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
2024-05-30 13:54:02 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2024-05-28 17:26:38 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.11.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.13.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-05-31 12:31:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.java-websocket</groupId>
|
|
|
|
<artifactId>Java-WebSocket</artifactId>
|
2024-09-23 20:11:35 +02:00
|
|
|
<version>1.5.7</version>
|
2024-05-31 12:31:16 +02:00
|
|
|
</dependency>
|
2024-05-28 17:26:38 +02:00
|
|
|
</dependencies>
|
2024-05-30 13:54:02 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2024-09-23 20:11:35 +02:00
|
|
|
<version>3.1.1</version>
|
2024-05-30 13:54:02 +02:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2024-09-23 17:59:24 +02:00
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
2024-05-30 13:54:02 +02:00
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
2024-09-23 17:59:24 +02:00
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
2024-05-30 13:54:02 +02:00
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<scm>
|
2024-09-23 17:59:24 +02:00
|
|
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/wtapi.git</developerConnection>
|
2024-09-24 19:54:38 +02:00
|
|
|
<tag>wtapi-0.8.0</tag>
|
2024-05-30 14:02:55 +02:00
|
|
|
</scm>
|
2024-05-28 17:26:38 +02:00
|
|
|
|
|
|
|
</project>
|