Files
Protocol/README.MD

41 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-09-19 19:48:50 +02:00
# Open Autonomous Connection Protocol
This is the Protocol for our Open Autonomous Connection project.<br />
You can easily implement this Protocol via Maven.<br />
Feel free to join our Discord.
<br />
2026-02-22 16:16:14 +01:00
**Third-party components:**
<br />
Download all license here: https://open-autonomous-connection.org/assets/licenses.zip
- *UnlegitLibrary* is authored by the same copyright holder and is used here under a special agreement:
While [UnlegitLibrary](https://repo.unlegitdqrk.dev/UnlegitDqrk/unlegitlibrary/) is generally distributed under
the [GNU GPLv3](https://repo.unlegitdqrk.dev/UnlegitDqrk/unlegitlibrary/src/branch/master/LICENSE),
it is additionally licensed under OAPL **exclusively for the OAC project**.
Therefore, within OAC, the OAPL terms apply to UnlegitLibrary as well.
### Take a look into [Certificate Generation](https://repo.unlegitdqrk.dev/UnlegitDqrk/unlegitlibrary/src/branch/master#certificate-generation-for-networksystem).
2026-02-11 23:11:33 +01:00
2025-09-19 19:48:50 +02:00
# Maven
2025-12-08 10:44:15 +01:00
2025-09-19 19:48:50 +02:00
### pom.xml
2025-12-08 10:44:15 +01:00
2025-09-19 19:48:50 +02:00
```
<dependency>
2025-09-24 22:05:02 +02:00
<groupId>org.openautonomousconnection</groupId>
2026-02-11 23:11:33 +01:00
<artifactId>Protocol</artifactId>
2025-09-20 21:13:11 +02:00
<version>VERSION</version>
2025-09-19 19:48:50 +02:00
</dependency>
```
### Repository:
2025-12-08 10:44:15 +01:00
2025-09-19 19:48:50 +02:00
```
2025-09-24 22:05:02 +02:00
<repository>
2025-09-29 17:46:30 +02:00
<id>oac</id>
2025-09-24 22:05:02 +02:00
<url>https://repo.open-autonomous-connection.org/api/packages/open-autonomous-connection/maven</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
2025-12-08 10:44:15 +01:00
```