Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Dec 1, 2020
1 parent 302d901 commit fa5c326
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
20 changes: 17 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
:lib_version: 0.4.14

image::https://github.com/marcingrzejszczak/jsonassert/workflows/Build/badge.svg?style=svg["Build",link="https://github.com/marcingrzejszczak/jsonassert/actions"]
image::https://maven-badges.herokuapp.com/maven-central/com.toomuchcoding.jsonassert/jsonassert/badge.svg?style=plastic[Maven Central, link="https://maven-badges.herokuapp.com/maven-central/com.toomuchcoding.jsonassert/jsonassert"]
image::https://badges.gitter.im/Join%20Chat.svg[Gitter, link="https://gitter.im/marcingrzejszczak/jsonassert?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"]
Expand All @@ -13,7 +11,6 @@ Small library for those who have a hard time understanding the complexity of JSO

toc::[]


= Rationale

Have you ever met such a JSON Path expression?
Expand All @@ -34,6 +31,23 @@ JSON Assert to the rescue!

== Fast intro

=== Adding to your project

.pom.xml (Maven)
```xml
<dependency>
<groupId>com.toomuchcoding.jsonassert</groupId>
<artifactId>jsonassert</artifactId>
<version>${jsonassert.version}</version>
<scope>test</scope>
</dependency>
```

.build.gradle (Gradle)
```groovy
testImplementation "com.toomuchcoding.jsonassert:jsonassert:${jsonassertVersion}"
```

=== Assertions

The library has a couple of main classes. One is `JsonAssertion` that gives you public static methods:
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<!-- <preparationGoals>clean install</preparationGoals>-->
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
Expand Down

0 comments on commit fa5c326

Please sign in to comment.