Guest User

Untitled

a guest
Dec 11th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <dependencies>
  2. <dependency>
  3. <!-- TestNG framework as the engine to run our scripts -->
  4. <groupId>org.testng</groupId>
  5. <artifactId>testng</artifactId>
  6. <version>6.11</version>
  7. <scope>test</scope>
  8. </dependency>
  9. <dependency>
  10. <!-- Java library for Rest APIs testing -->
  11. <groupId>com.jayway.restassured</groupId>
  12. <artifactId>rest-assured</artifactId>
  13. <version>2.9.0</version>
  14. <scope>test</scope>
  15. </dependency>
  16. <dependency>
  17. <!-- To parse the json documents -->
  18. <groupId>com.jayway.jsonpath</groupId>
  19. <artifactId>json-path</artifactId>
  20. <version>2.4.0</version>
  21. </dependency>
  22. <dependency>
  23. <!-- To validate that JSON response conforms to a JSON schema -->
  24. <groupId>com.jayway.restassured</groupId>
  25. <artifactId>json-schema-validator</artifactId>
  26. <version>2.2.0</version>
  27. </dependency>
  28. </dependencies>
Add Comment
Please, Sign In to add comment