Advertisement
Raizekas

Untitled

Mar 22nd, 2021
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 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>lt.kompanija</groupId>
  8. <artifactId>junit_pirma_pmk</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.  
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-surefire-plugin</artifactId>
  23. <version>2.22.1</version>
  24. </plugin>
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-failsafe-plugin</artifactId>
  28. <version>3.0.0-M1</version>
  29. </plugin>
  30. </plugins>
  31. </build>
  32.  
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.junit.jupiter</groupId>
  36. <artifactId>junit-jupiter-api</artifactId>
  37. <version>5.7.0</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.junit.jupiter</groupId>
  42. <artifactId>junit-jupiter-engine</artifactId>
  43. <version>5.7.0</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>junit</groupId>
  48. <artifactId>junit</artifactId>
  49. <version>4.12</version>
  50. <scope>test</scope>
  51. </dependency>
  52. </dependencies>
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement