pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>appCalculator</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>pl.dmcs</groupId>
  19. <artifactId>appAdd</artifactId>
  20. <version>1.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.junit.jupiter</groupId>
  24. <artifactId>junit-jupiter-engine</artifactId>
  25. <version>5.10.2</version>
  26. <scope>test</scope>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <pluginManagement>
  31. <!-- lock down plugins versions to avoid using Maven defaults -->
  32. <plugins>
  33. <!-- clean lifecycle -->
  34. <plugin>
  35. <artifactId>maven-clean-plugin</artifactId>
  36. <version>3.3.2</version>
  37. </plugin>
  38. <!-- default lifecycle -->
  39. <plugin>
  40. <artifactId>maven-resources-plugin</artifactId>
  41. <version>3.3.1</version>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.12.1</version>
  46. </plugin>
  47. <plugin>
  48. <artifactId>maven-surefire-plugin</artifactId>
  49. <version>3.2.5</version>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-jar-plugin</artifactId>
  53. <version>3.3.0</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-install-plugin</artifactId>
  57. <version>3.1.1</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-deploy-plugin</artifactId>
  61. <version>3.1.1</version>
  62. </plugin>
  63. <!-- site lifecycle -->
  64. <plugin>
  65. <artifactId>maven-site-plugin</artifactId>
  66. <version>4.0.0-M13</version>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-project-info-reports-plugin</artifactId>
  70. <version>3.5.0</version>
  71. </plugin>
  72. </plugins>
  73. </pluginManagement>
  74. </build>
  75. </project>