pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>pl.dmcs</groupId>
  5. <artifactId>app</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <java.version>11</java.version>
  11. <junit.jupiter.version>5.9.1</junit.jupiter.version>
  12. <mockito.version>4.8.1</mockito.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.junit.jupiter</groupId>
  17. <artifactId>junit-jupiter-engine</artifactId>
  18. <version>${junit.jupiter.version}</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.mockito</groupId>
  23. <artifactId>mockito-core</artifactId>
  24. <version>${mockito.version}</version>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <version>3.10.1</version>
  34. <configuration>
  35. <source>${java.version}</source>
  36. <target>${java.version}</target>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <version>3.0.0-M7</version>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-site-plugin</artifactId>
  47. <version>4.0.0-M3</version>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-resources-plugin</artifactId>
  52. <version>3.1.0</version>
  53. <configuration>
  54. <includeEmptyDirs>true</includeEmptyDirs>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. <testResources>
  59. <testResource>
  60. <directory>src/test/resources</directory>
  61. <excludes>
  62. <exclude>**/.gitkeep</exclude>
  63. </excludes>
  64. </testResource>
  65. </testResources>
  66. </build>
  67. <reporting>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-project-info-reports-plugin</artifactId>
  72. <version>3.4.1</version>
  73. </plugin>
  74. </plugins>
  75. </reporting>
  76. </project>