From 82b59ccc0d67b52672f84e5042e5f942100a1cab Mon Sep 17 00:00:00 2001 From: Finn Date: Thu, 11 Dec 2025 12:59:27 +0100 Subject: [PATCH] Init --- .gitignore | 39 ++++++++++++++++++++++++++ README.MD | 19 +++++++++++++ pom.xml | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+) create mode 100644 .gitignore create mode 100644 README.MD create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..480bdf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ +.kotlin + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..ba787cb --- /dev/null +++ b/README.MD @@ -0,0 +1,19 @@ +# Open Autonomous Connection WebClient + +This is the Protocol for our Open Autonomous Connection project.
+Feel free to join our Discord. +
+ +## License Notice + +This project (OAC) is licensed under the [Open Autonomous Public License (OAPL)](https://open-autonomous-connection.org/license.html). + +**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 \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..8d96388 --- /dev/null +++ b/pom.xml @@ -0,0 +1,82 @@ + + + 4.0.0 + + org.openautonomousconnection + WebClient + 1.0-SNAPSHOT + + Open Autonomous Connection + https://open-autonomous-connection.org/ + + https://open-autonomous-connection.org/ + The default DNS-Server + + + 23 + 23 + UTF-8 + + + + + UnlegitDqrk + Open Autonomous Connection + https://open-autonomous-connection.org/ + https://unlegitdqrk.dev/ + + Owner + Head Developer + + + + Maple + Open Autonomous Connection + https://open-autonomous-connection.org/ + https://niumaple.carrd.co/ + + Owner + Head Developer + + + + + + Issue Tracker + https://repo.open-autonomous-connection.org/open-autonomous-connection/DNSServer/issues + + + + + Open Autonomous Public License + https://repo.open-autonomous-connection.org/Open-Autonomous-Connection/OAPL/ + repo + + + + + + oac + https://repo.open-autonomous-connection.org/api/packages/open-autonomous-connection/maven + + true + + + + + + + org.openautonomousconnection + protocol + 1.0.0-BETA.1 + + + org.projectlombok + lombok + 1.18.38 + provided + + + \ No newline at end of file