Guest User

Untitled

a guest
Nov 16th, 2023
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 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>com.pluxee</groupId>
  8. <artifactId>PluxeeAssert</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <properties>
  12. <maven.compiler.release>21</maven.compiler.release>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15.  
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.microsoft.playwright</groupId>
  19. <artifactId>playwright</artifactId>
  20. <version>1.36.0</version>
  21. </dependency>
  22.  
  23. <dependency>
  24. <groupId>org.junit.jupiter</groupId>
  25. <artifactId>junit-jupiter-api</artifactId>
  26. <version>5.10.1</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.junit.jupiter</groupId>
  31. <artifactId>junit-jupiter-engine</artifactId>
  32. <version>5.10.1</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.junit.platform</groupId>
  37. <artifactId>junit-platform-suite-api</artifactId>
  38. <version>1.10.1</version>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42.  
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.11.0</version>
  49. <configuration>
  50. <release>21</release>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <version>3.1.2</version>
  57. <configuration>
  58. <includes>
  59. <include>**/*Suite.java</include>
  60. <!-- <include>**/*Test.java</include>-->
  61. </includes>
  62. <testFailureIgnore>true</testFailureIgnore>
  63. <trimStackTrace>false</trimStackTrace>
  64. <useFile>false</useFile>
  65. <printSummary>true</printSummary>
  66. <redirectTestOutputToFile>false</redirectTestOutputToFile>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>
Advertisement
Add Comment
Please, Sign In to add comment