pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>pl.dmcs</groupId>
  4. <artifactId>app</artifactId>
  5. <version>1.0</version>
  6. <packaging>jar</packaging>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <maven.compiler.source>11</maven.compiler.source>
  10. <maven.compiler.target>11</maven.compiler.target>
  11. </properties>
  12. <!-- useful for documentation generation -->
  13. <name>My sample project</name>
  14. <description>This is my sample project.</description>
  15. <url>https://weeia.p.lodz.pl</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.junit.jupiter</groupId>
  19. <artifactId>junit-jupiter-engine</artifactId>
  20. <version>5.10.2</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.mockito</groupId>
  25. <artifactId>mockito-core</artifactId>
  26. <version>5.11.0</version>
  27. <scope>test</scope>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <pluginManagement>
  32. <!-- lock down plugins versions to avoid using Maven defaults -->
  33. <plugins>
  34. <!-- clean lifecycle -->
  35. <plugin>
  36. <artifactId>maven-clean-plugin</artifactId>
  37. <version>3.3.2</version>
  38. </plugin>
  39. <!-- default lifecycle -->
  40. <plugin>
  41. <artifactId>maven-resources-plugin</artifactId>
  42. <version>3.3.1</version>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-compiler-plugin</artifactId>
  46. <version>3.12.1</version>
  47. </plugin>
  48. <plugin>
  49. <artifactId>maven-surefire-plugin</artifactId>
  50. <version>3.2.5</version>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-jar-plugin</artifactId>
  54. <version>3.3.0</version>
  55. </plugin>
  56. <plugin>
  57. <artifactId>maven-install-plugin</artifactId>
  58. <version>3.1.1</version>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-deploy-plugin</artifactId>
  62. <version>3.1.1</version>
  63. </plugin>
  64. <!-- site lifecycle -->
  65. <plugin>
  66. <artifactId>maven-site-plugin</artifactId>
  67. <version>4.0.0-M13</version>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-project-info-reports-plugin</artifactId>
  71. <version>3.5.0</version>
  72. </plugin>
  73. </plugins>
  74. </pluginManagement>
  75. </build>
  76. </project>