pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.qmth.boot</groupId>
  7. <artifactId>qmth-boot</artifactId>
  8. <version>1.0.3</version>
  9. </parent>
  10. <artifactId>starter-api</artifactId>
  11. <name>starter-api</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.qmth.boot</groupId>
  19. <artifactId>tools-signature</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.qmth.boot</groupId>
  23. <artifactId>tools-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.qmth.boot</groupId>
  27. <artifactId>core-metrics</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.qmth.boot</groupId>
  31. <artifactId>core-rate-limit</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.qmth.boot</groupId>
  35. <artifactId>core-security</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.qmth.boot</groupId>
  39. <artifactId>core-logging</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qmth.boot</groupId>
  43. <artifactId>core-models</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  53. <plugins>
  54. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  55. <plugin>
  56. <artifactId>maven-clean-plugin</artifactId>
  57. <version>3.1.0</version>
  58. </plugin>
  59. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  60. <plugin>
  61. <artifactId>maven-resources-plugin</artifactId>
  62. <version>3.0.2</version>
  63. </plugin>
  64. <plugin>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.0</version>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-surefire-plugin</artifactId>
  70. <version>2.22.1</version>
  71. </plugin>
  72. <plugin>
  73. <artifactId>maven-jar-plugin</artifactId>
  74. <version>3.0.2</version>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-install-plugin</artifactId>
  78. <version>2.5.2</version>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-deploy-plugin</artifactId>
  82. <version>2.8.2</version>
  83. </plugin>
  84. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  85. <plugin>
  86. <artifactId>maven-site-plugin</artifactId>
  87. <version>3.7.1</version>
  88. </plugin>
  89. <plugin>
  90. <artifactId>maven-project-info-reports-plugin</artifactId>
  91. <version>3.0.0</version>
  92. </plugin>
  93. </plugins>
  94. </pluginManagement>
  95. </build>
  96. </project>