Advertisement
Raizekas

Untitled

Apr 8th, 2021
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 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>org.example</groupId>
  8. <artifactId>selenium_maven_0804</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <properties>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-surefire-plugin</artifactId>
  22. <version>2.22.1</version>
  23. </plugin>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-failsafe-plugin</artifactId>
  27. <version>3.0.0-M1</version>
  28. </plugin>
  29. </plugins>
  30. </build>
  31.  
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.junit.jupiter</groupId>
  35. <artifactId>junit-jupiter-api</artifactId>
  36. <version>5.7.0</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.junit.jupiter</groupId>
  41. <artifactId>junit-jupiter-engine</artifactId>
  42. <version>5.7.0</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>4.12</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.seleniumhq.selenium</groupId>
  53. <artifactId>selenium-java</artifactId>
  54. <version>3.4.0</version>
  55. </dependency>
  56. </dependencies>
  57.  
  58.  
  59. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement