2025-09-19 21:27:35 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2025-12-08 10:44:15 +01:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2025-09-19 21:27:35 +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>
|
|
|
|
|
|
2025-09-24 22:07:59 +02:00
|
|
|
<groupId>org.openautonomousconnection</groupId>
|
2026-01-18 14:58:34 +01:00
|
|
|
<artifactId>Protocol</artifactId>
|
2026-02-21 23:12:43 +01:00
|
|
|
<version>1.0.1-BETA.0.1</version>
|
2025-09-20 11:38:49 +02:00
|
|
|
<organization>
|
|
|
|
|
<name>Open Autonomous Connection</name>
|
2025-09-20 11:48:19 +02:00
|
|
|
<url>https://open-autonomous-connection.org/</url>
|
2025-09-20 11:38:49 +02:00
|
|
|
</organization>
|
2025-09-24 22:02:10 +02:00
|
|
|
<url>https://open-autonomous-connection.org/</url>
|
2025-09-20 11:48:19 +02:00
|
|
|
<description>The Protocol for Server and Client</description>
|
2025-09-19 21:27:35 +02:00
|
|
|
|
|
|
|
|
<properties>
|
2026-02-21 23:15:49 +01:00
|
|
|
<maven.compiler.source>25</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>25</maven.compiler.target>
|
2025-09-19 21:27:35 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2025-09-20 11:38:49 +02:00
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<name>UnlegitDqrk</name>
|
|
|
|
|
<organization>Open Autonomous Connection</organization>
|
2025-09-20 11:48:19 +02:00
|
|
|
<organizationUrl>https://open-autonomous-connection.org/</organizationUrl>
|
|
|
|
|
<url>https://unlegitdqrk.dev/</url>
|
|
|
|
|
<roles>
|
|
|
|
|
<role>Owner</role>
|
|
|
|
|
<role>Head Developer</role>
|
|
|
|
|
</roles>
|
|
|
|
|
</developer>
|
|
|
|
|
<developer>
|
|
|
|
|
<name>Maple</name>
|
|
|
|
|
<organization>Open Autonomous Connection</organization>
|
|
|
|
|
<organizationUrl>https://open-autonomous-connection.org/</organizationUrl>
|
|
|
|
|
<url>https://niumaple.carrd.co/</url>
|
2025-09-20 11:38:49 +02:00
|
|
|
<roles>
|
|
|
|
|
<role>Owner</role>
|
|
|
|
|
<role>Head Developer</role>
|
|
|
|
|
</roles>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<issueManagement>
|
2025-09-24 22:02:10 +02:00
|
|
|
<system>Issue Tracker</system>
|
|
|
|
|
<url>https://repo.open-autonomous-connection.org/open-autonomous-connection/Protocol/issues</url>
|
2025-09-20 11:38:49 +02:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
2025-09-24 22:02:10 +02:00
|
|
|
<id>repounlegitdqrk</id>
|
|
|
|
|
<url>https://repo.unlegitdqrk.dev/api/packages/UnlegitDqrk/maven</url>
|
2025-09-20 11:38:49 +02:00
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
2025-12-11 10:44:41 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>oac</id>
|
|
|
|
|
<url>https://repo.open-autonomous-connection.org/api/packages/open-autonomous-connection/maven</url>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
2025-09-20 11:38:49 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
2025-09-19 21:27:35 +02:00
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
2025-09-24 22:02:10 +02:00
|
|
|
<id>oac</id>
|
|
|
|
|
<name>Protocol</name>
|
|
|
|
|
<url>https://repo.open-autonomous-connection.org/api/packages/open-autonomous-connection/maven</url>
|
2025-09-19 21:27:35 +02:00
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2025-09-20 09:10:37 +02:00
|
|
|
<licenses>
|
|
|
|
|
<license>
|
2025-12-13 15:51:43 +01:00
|
|
|
<name>Open Autonomous Public License (OAPL)</name>
|
2025-12-10 22:24:20 +01:00
|
|
|
<url>https://open-autonomous-connection.org/license.html</url>
|
2025-12-13 15:51:43 +01:00
|
|
|
</license>
|
2025-09-20 09:10:37 +02:00
|
|
|
</licenses>
|
|
|
|
|
|
2025-09-19 21:27:35 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2025-09-24 22:12:03 +02:00
|
|
|
<groupId>dev.unlegitdqrk</groupId>
|
2025-09-19 21:27:35 +02:00
|
|
|
<artifactId>unlegitlibrary</artifactId>
|
2026-02-21 23:12:43 +01:00
|
|
|
<version>1.8.2</version>
|
2025-09-19 21:27:35 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2026-02-21 23:12:43 +01:00
|
|
|
<version>1.18.42</version>
|
2025-09-19 21:27:35 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2025-09-25 23:40:24 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.13.2</version>
|
|
|
|
|
</dependency>
|
2025-09-29 18:45:18 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.bytebuddy</groupId>
|
|
|
|
|
<artifactId>byte-buddy</artifactId>
|
2026-02-21 23:15:49 +01:00
|
|
|
<version>1.18.5</version>
|
2025-09-29 18:45:18 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.bytebuddy</groupId>
|
|
|
|
|
<artifactId>byte-buddy-agent</artifactId>
|
2026-02-21 23:15:49 +01:00
|
|
|
<version>1.18.5</version>
|
2025-09-29 18:45:18 +02:00
|
|
|
</dependency>
|
2025-09-19 21:27:35 +02:00
|
|
|
</dependencies>
|
2025-09-29 18:28:23 +02:00
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2026-02-21 23:21:51 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.13.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
|
<compilerArgs>
|
|
|
|
|
<arg>-proc:full</arg>
|
|
|
|
|
</compilerArgs>
|
|
|
|
|
|
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.42</version>
|
|
|
|
|
</path>
|
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2025-09-29 18:29:49 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2025-09-29 18:28:23 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.6.3</version>
|
2026-01-19 18:59:59 +01:00
|
|
|
<configuration>
|
2026-02-01 17:13:33 +01:00
|
|
|
<failOnError>false</failOnError>
|
|
|
|
|
<failOnWarnings>false</failOnWarnings>
|
|
|
|
|
<doclint>none</doclint>
|
2026-01-19 18:59:59 +01:00
|
|
|
<locale>en_US</locale>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<docencoding>UTF-8</docencoding>
|
|
|
|
|
<charset>UTF-8</charset>
|
|
|
|
|
</configuration>
|
2025-09-29 18:29:49 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2025-09-29 18:28:23 +02:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2025-09-19 21:27:35 +02:00
|
|
|
</project>
|