pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <groupId>org.example</groupId>
  7. <artifactId>PlayWright-Demo</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>11</maven.compiler.source>
  11. <maven.compiler.target>11</maven.compiler.target>
  12. <playwright-version>1.42.0</playwright-version>
  13. <testng-version>7.9.0</testng-version>
  14. </properties>
  15. <dependencies>
  16. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  17. <dependency>
  18. <groupId>org.apache.poi</groupId>
  19. <artifactId>poi</artifactId>
  20. <version>5.2.5</version>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/com.aventstack/extentreports -->
  23. <dependency>
  24. <groupId>com.aventstack</groupId>
  25. <artifactId>extentreports</artifactId>
  26. <version>5.1.1</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/com.microsoft.playwright/playwright -->
  29. <dependency>
  30. <groupId>com.microsoft.playwright</groupId>
  31. <artifactId>playwright</artifactId>
  32. <version>${playwright-version}</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  35. <dependency>
  36. <groupId>org.testng</groupId>
  37. <artifactId>testng</artifactId>
  38. <version>${testng-version}</version>
  39. <scope>test</scope>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  42. <dependency>
  43. <groupId>org.apache.poi</groupId>
  44. <artifactId>poi</artifactId>
  45. <version>5.2.5</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi-ooxml</artifactId>
  51. <version>5.2.4</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-email -->
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-email</artifactId>
  57. <version>1.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.logging.log4j</groupId>
  61. <artifactId>log4j-api</artifactId>
  62. <version>2.21.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.logging.log4j</groupId>
  66. <artifactId>log4j-core</artifactId>
  67. <version>2.21.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.slf4j</groupId>
  71. <artifactId>slf4j-simple</artifactId>
  72. <version>1.7.30</version>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  75. <dependency>
  76. <groupId>org.testng</groupId>
  77. <artifactId>testng</artifactId>
  78. <version>7.10.2</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. </dependencies>
  82. </project>