Init
This commit is contained in:
39
.gitignore
vendored
Normal file
39
.gitignore
vendored
Normal file
@@ -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
|
||||||
19
README.MD
Normal file
19
README.MD
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Open Autonomous Connection WebClient
|
||||||
|
|
||||||
|
This is the Protocol 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://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
|
||||||
82
pom.xml
Normal file
82
pom.xml
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
<?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>org.openautonomousconnection</groupId>
|
||||||
|
<artifactId>WebClient</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<organization>
|
||||||
|
<name>Open Autonomous Connection</name>
|
||||||
|
<url>https://open-autonomous-connection.org/</url>
|
||||||
|
</organization>
|
||||||
|
<url>https://open-autonomous-connection.org/</url>
|
||||||
|
<description>The default DNS-Server</description>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<maven.compiler.source>23</maven.compiler.source>
|
||||||
|
<maven.compiler.target>23</maven.compiler.target>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>UnlegitDqrk</name>
|
||||||
|
<organization>Open Autonomous Connection</organization>
|
||||||
|
<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>
|
||||||
|
<roles>
|
||||||
|
<role>Owner</role>
|
||||||
|
<role>Head Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<issueManagement>
|
||||||
|
<system>Issue Tracker</system>
|
||||||
|
<url>https://repo.open-autonomous-connection.org/open-autonomous-connection/DNSServer/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Open Autonomous Public License</name>
|
||||||
|
<url>https://repo.open-autonomous-connection.org/Open-Autonomous-Connection/OAPL/</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>oac</id>
|
||||||
|
<url>https://repo.open-autonomous-connection.org/api/packages/open-autonomous-connection/maven</url>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openautonomousconnection</groupId>
|
||||||
|
<artifactId>protocol</artifactId>
|
||||||
|
<version>1.0.0-BETA.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
<version>1.18.38</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
||||||
Reference in New Issue
Block a user