Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>TwitterTest</groupId>
  8. <artifactId>TwitterTest</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <dependencies>
  12. <dependency>
  13. <groupId>io.rest-assured</groupId>
  14. <artifactId>rest-assured</artifactId>
  15. <version>3.0.2</version>
  16. </dependency>
  17.  
  18. <dependency>
  19. <groupId>org.testng</groupId>
  20. <artifactId>testng</artifactId>
  21. <version>6.8</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.testng</groupId>
  26. <artifactId>testng</artifactId>
  27. <version>6.8</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.hamcrest</groupId>
  32. <artifactId>hamcrest-all</artifactId>
  33. <version>1.3</version>
  34. </dependency>
  35.  
  36. <!-- https://mvnrepository.com/artifact/junit/junit -->
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>4.12</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.xml.bind</groupId>
  45. <artifactId>jaxb-api</artifactId>
  46. <version>2.3.0</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/org.json/json -->
  49. <dependency>
  50. <groupId>org.json</groupId>
  51. <artifactId>json</artifactId>
  52. <version>20180130</version>
  53. </dependency>
  54. <!-- <dependency>
  55. <groupId>org.eclipse.persistence</groupId>
  56. <artifactId>eclipselink</artifactId>
  57. <version>2.7.0</version>
  58. </dependency>-->
  59. </dependencies>
  60. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement