+
+> [!Note]
+>
+> I am not affiliated with OpenShock or any of its developers.
+
+Obviously, you need a [OpenShock](https://openshock.org) account with API Token to use this wrapper.
+
+## Installation
+
+
+To use this Wrapper, you need to add the following repository and dependency to your `pom.xml` file.
+Replace `VERSION` with the latest version seen above or found [here](https://github.com/JoshiCodes/JavaShock/releases).
+
+```xml
+
+
+ joshicodes-de-releases
+ JoshiCodes Repository
+ https://repo.joshicodes.de/releases
+
+
+```
+
+```xml
+
+
+ de.joshicodes
+ JavaShock
+ VERSION
+
+
+```
+## Usage
+To use JavaShock, you need to create a new instance with your API Token.
+You can create an API Token [here](https://openshock.app/#/dashboard/tokens).
+
+```java
+final JavaShock shock = new JavaShock("TOKEN-HERE");
+// or if you have a custom API URL:
+final JavaShock shock = new JavaShock("TOKEN-HERE", "https://api.openshock.app");
+// If no URL is provided, the default URL is used.
+```
+
+Everything from here on now is pretty self-explanatory.
diff --git a/pom.xml b/pom.xml
index 730e785..e1db215 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
de.joshicodesJavaShock
- 1.0-SNAPSHOT
+ 1.017
@@ -14,6 +14,43 @@
UTF-8
+
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+ 3.5.0
+
+ 17
+ none
+
+
+
+ release
+ compile
+
+ jar
+
+
+
+
+
+
+
+
+
+ joshicodes-de
+ JoshiCodes Repository
+ https://repo.joshicodes.de/releases
+
+
+ joshicodes-de-snapshots
+ JoshiCodes Snapshots Repository
+ https://repo.joshicodes.de/snapshots
+
+
+
com.google.code.gson