1 files changed, 21 insertions(+), 1 deletions(-)
M README.md
M README.md => README.md +21 -1
@@ 6,4 6,24 @@ It is a useful tool for testing current or potential passwords and evaluating th
### Usage
-See the [examples](examples) for help with using the library.
+See the [examples](examples) and the [documentation](https://www.javadoc.io/doc/xyz.jorgecastro/password-critic) for help with using the library.
+
+### Setup
+
+The library is available through the [Maven Central Repository](https://central.sonatype.dev/artifact/xyz.jorgecastro/password-critic/1.0.0).
+
+#### Maven
+
+```text
+<dependency>
+ <groupId>xyz.jorgecastro</groupId>
+ <artifactId>password-critic</artifactId>
+ <version>1.0.0</version>
+</dependency>
+```
+
+#### Gradle
+
+```text
+implementation 'xyz.jorgecastro:password-critic:1.0.0'
+```