2025-09-19 21:27:35 +02: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>github.openautonomousconnection</groupId>
|
|
|
|
<artifactId>protocol</artifactId>
|
2025-09-19 20:47:14 +02:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2025-09-19 21:27:35 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>23</maven.compiler.source>
|
|
|
|
<maven.compiler.target>23</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>github</id>
|
|
|
|
<url>https://maven.pkg.github.com/unlegitdqrk/unlegitlibrary</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>github</id>
|
|
|
|
<name>Protocol</name>
|
|
|
|
<url>https://maven.pkg.github.com/open-autonomous-connection/protocol</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.finn.unlegitlibrary</groupId>
|
|
|
|
<artifactId>unlegitlibrary</artifactId>
|
2025-09-19 20:20:20 +02:00
|
|
|
<version>1.5.15</version>
|
2025-09-19 21:27:35 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.38</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|