Add dependency details to README

This commit is contained in:
John Ahlroos 2024-11-15 16:39:57 +01:00
parent f75572f9cc
commit 1f512053cf
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
1 changed files with 16 additions and 0 deletions

View File

@ -2,6 +2,22 @@
This library provides helper methods for asserting JSON strings with AssertJ.
To include it with Maven
```xml
<dependency>
<groupId>com.devsoap</groupId>
<artifactId>assertj-json</artifactId>
<version>0.0.2</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
```
And with Gradle
```groovy
testImplementation 'com.devsoap:assertj-json:0.0.2'
```
Syntax Examples:
```java