pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>pl.dmcs</groupId>
  6. <artifactId>app</artifactId>
  7. <version>1.0</version>
  8. <packaging>jar</packaging>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <maven.compiler.source>11</maven.compiler.source>
  12. <maven.compiler.target>11</maven.compiler.target>
  13. </properties>
  14. <name>My sample project</name>
  15. <description>This is my sample project.</description>
  16. <url>https://weeia.p.lodz.pl</url>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.junit.jupiter</groupId>
  20. <artifactId>junit-jupiter-engine</artifactId>
  21. <version>5.10.2</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.mockito</groupId>
  26. <artifactId>mockito-core</artifactId>
  27. <version>5.11.0</version>
  28. <scope>test</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <pluginManagement>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-clean-plugin</artifactId>
  36. <version>3.3.2</version>
  37. </plugin>
  38. <plugin>
  39. <artifactId>maven-resources-plugin</artifactId>
  40. <version>3.3.1</version>
  41. </plugin>
  42. <plugin>
  43. <artifactId>maven-compiler-plugin</artifactId>
  44. <version>3.12.1</version>
  45. </plugin>
  46. <plugin>
  47. <artifactId>maven-surefire-plugin</artifactId>
  48. <version>3.2.5</version>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-jar-plugin</artifactId>
  52. <version>3.3.0</version>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-install-plugin</artifactId>
  56. <version>3.1.1</version>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-deploy-plugin</artifactId>
  60. <version>3.1.1</version>
  61. </plugin>
  62. <plugin>
  63. <artifactId>maven-site-plugin</artifactId>
  64. <version>4.0.0-M13</version>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-project-info-reports-plugin</artifactId>
  68. <version>3.5.0</version>
  69. </plugin>
  70. </plugins>
  71. </pluginManagement>
  72. </build>
  73. </project>