pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>PriceWatch</groupId>
  4. <artifactId>PW-HtmlUnit</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <dependencies>
  7. <!-- https://mvnrepository.com/artifact/net.sourceforge.htmlunit/htmlunit -->
  8. <dependency>
  9. <groupId>net.sourceforge.htmlunit</groupId>
  10. <artifactId>htmlunit</artifactId>
  11. <version>2.66.0</version>
  12. </dependency>
  13. <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
  14. <dependency>
  15. <groupId>org.seleniumhq.selenium</groupId>
  16. <artifactId>selenium-java</artifactId>
  17. <version>4.6.0</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  20. <dependency>
  21. <groupId>com.google.guava</groupId>
  22. <artifactId>guava</artifactId>
  23. <version>31.1-jre</version>
  24. </dependency>
  25. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  26. <dependency>
  27. <groupId>org.junit.jupiter</groupId>
  28. <artifactId>junit-jupiter-api</artifactId>
  29. <version>5.9.1</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.code.gson</groupId>
  34. <artifactId>gson</artifactId>
  35. <version>2.2.2</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. <version>8.0.30</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/online.sanen/sendEmail -->
  44. <dependency>
  45. <groupId>online.sanen</groupId>
  46. <artifactId>sendEmail</artifactId>
  47. <version>1.0.1</version>
  48. </dependency>
  49. </dependencies>
  50. </project>