42 lines
1.3 KiB
Markdown
42 lines
1.3 KiB
Markdown
# Open Autonomous Connection WebServer
|
|
|
|
This is the WebServer for our Open Autonomous Connection project.<br />
|
|
Feel free to join our Discord.
|
|
<br />
|
|
|
|
## License Notice
|
|
|
|
This project (OAC) is licensed under the [Open Autonomous Public License (OAPL)](https://repo.open-autonomous-connection.org/open-autonomous-connection/OAPL/).
|
|
|
|
**Third-party components:**
|
|
- *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.
|
|
|
|
# Bugs/Problems
|
|
# In progress
|
|
# TODO
|
|
|
|
# Maven
|
|
### pom.xml
|
|
```
|
|
<dependency>
|
|
<groupId>github.openautonomousconnection</groupId>
|
|
<artifactId>protocol</artifactId>
|
|
<version>VERSION</version>
|
|
</dependency>
|
|
```
|
|
|
|
### Repository:
|
|
```
|
|
<repositories>
|
|
<repository>
|
|
<id>github</id>
|
|
<url>https://maven.pkg.github.com/open-autonomous-connection/protocol</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
``` |