Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. <dependency>
  2. <groupId>org.seleniumhq.selenium</groupId>
  3. <artifactId>selenium-chrome-driver</artifactId>
  4. <version>2.51.0</version>
  5. <scope>test</scope>
  6. </dependency>
  7.  
  8. <?xml version="1.0" encoding="UTF-8"?>
  9. <project xmlns="http://maven.apache.org/POM/4.0.0"
  10. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  12. <modelVersion>4.0.0</modelVersion>
  13.  
  14. <groupId>firstSeleniumTest</groupId>
  15. <artifactId>firstSeleniumTest</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17.  
  18. <dependencies>
  19.  
  20.  
  21. <dependency>
  22. <groupId>org.seleniumhq.selenium</groupId>
  23. <artifactId>selenium-java</artifactId>
  24. <version>2.51.0</version>
  25. <scope>test</scope>
  26. </dependency>
  27.  
  28. <dependency>
  29. <groupId>org.seleniumhq.selenium</groupId>
  30. <artifactId>selenium-chrome-driver</artifactId>
  31. <version>2.51.0</version>
  32. <scope>test</scope>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>com.github.detro</groupId>
  37. <artifactId>phantomjsdriver</artifactId>
  38. <version>1.2.0</version>
  39. <scope>test</scope>
  40. </dependency>
  41.  
  42. <dependency>
  43. <groupId>junit</groupId>
  44. <artifactId>junit</artifactId>
  45. <version>4.12</version>
  46. <scope>test</scope>
  47. </dependency>
  48.  
  49. <dependency>
  50. <groupId>org.hamcrest</groupId>
  51. <artifactId>hamcrest-library</artifactId>
  52. <version>1.3</version>
  53. <scope>test</scope>
  54. </dependency>
  55.  
  56. <dependency>
  57. <groupId>joda-time</groupId>
  58. <artifactId>joda-time</artifactId>
  59. <version>2.9.1</version>
  60. </dependency>
  61.  
  62. </dependencies>
  63.  
  64. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement