pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <name>My sample project</name>
  13. <description>This is my sample project.</description>
  14. <url>https://weeia.p.lodz.pl</url>
  15. <dependencies>
  16. <!-- JUnit dependency for testing -->
  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. <!-- Mockito dependency for testing -->
  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. <!-- Apache Commons Lang for Pair class -->
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-lang3</artifactId>
  34. <version>3.12.0</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <pluginManagement>
  39. <plugins>
  40. <!-- clean lifecycle -->
  41. <plugin>
  42. <artifactId>maven-clean-plugin</artifactId>
  43. <version>3.3.2</version>
  44. </plugin>
  45. <!-- default lifecycle -->
  46. <plugin>
  47. <artifactId>maven-resources-plugin</artifactId>
  48. <version>3.3.1</version>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <version>3.12.1</version>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <version>3.2.5</version>
  57. <configuration>
  58. <argLine>-XX:+EnableDynamicAgentLoading -Djdk.instrument.traceUsage</argLine>
  59. </configuration>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-jar-plugin</artifactId>
  63. <version>3.3.0</version>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-install-plugin</artifactId>
  67. <version>3.1.1</version>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-deploy-plugin</artifactId>
  71. <version>3.1.1</version>
  72. </plugin>
  73. <!-- site lifecycle -->
  74. <plugin>
  75. <artifactId>maven-site-plugin</artifactId>
  76. <version>4.0.0-M13</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-project-info-reports-plugin</artifactId>
  80. <version>3.5.0</version>
  81. </plugin>
  82. </plugins>
  83. </pluginManagement>
  84. </build>
  85. </project>