pom.xml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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>project-parent</artifactId>
  6. <version>1.0</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>Add</module>
  10. <module>Multiply</module>
  11. <module>Power</module>
  12. </modules>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>11</maven.compiler.source>
  16. <maven.compiler.target>11</maven.compiler.target>
  17. <junit.version>5.10.2</junit.version>
  18. <mockito.version>5.11.0</mockito.version>
  19. </properties>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.junit.jupiter</groupId>
  24. <artifactId>junit-jupiter-api</artifactId>
  25. <version>${junit.version}</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.junit.jupiter</groupId>
  30. <artifactId>junit-jupiter-engine</artifactId>
  31. <version>${junit.version}</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mockito</groupId>
  36. <artifactId>mockito-core</artifactId>
  37. <version>${mockito.version}</version>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <build>
  43. <pluginManagement>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.12.1</version>
  49. <configuration>
  50. <source>11</source>
  51. <target>11</target>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <version>3.2.5</version>
  57. <configuration>
  58. <includes>
  59. <include>**/*Test.java</include>
  60. </includes>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-clean-plugin</artifactId>
  65. <version>3.3.2</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-resources-plugin</artifactId>
  69. <version>3.3.1</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-jar-plugin</artifactId>
  73. <version>3.3.0</version>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-install-plugin</artifactId>
  77. <version>3.1.1</version>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-deploy-plugin</artifactId>
  81. <version>3.1.1</version>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-site-plugin</artifactId>
  85. <version>4.0.0-M13</version>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-project-info-reports-plugin</artifactId>
  89. <version>3.5.0</version>
  90. </plugin>
  91. </plugins>
  92. </pluginManagement>
  93. </build>
  94. </project>