maven dependency for restassured code example

Example: maven dependency for restassured

This include all basic component of RestAssured


    io.rest-assured
    rest-assured
    4.3.1
    test



If we want to use serialization , de-serialization
we will need Jackson-Databind


    com.fasterxml.jackson.core
    jackson-databind
    2.11.2


If we need Json schema validation


    io.rest-assured
    json-schema-validator
    4.3.1
    test


JsonPath and XmlPath is already included in the
RestAssured dependency, If you want to work with
JsonPath and XmlPath outside context of RestAssured
, you may also add below 2 dependencies.
It will enable you to directly work with
json file or xml file and use JsonPath and XmlPath.


      io.rest-assured
      json-path
      4.3.1
      test



      io.rest-assured
      xml-path
      4.3.1
      test

Tags:

Misc Example