pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.pavis.app</groupId>
  12. <artifactId>disk</artifactId>
  13. <version>1.0</version>
  14. <name>disk</name>
  15. <description>磁盘使用率检测平台</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-mail</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-quartz</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <scope>runtime</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.junit.vintage</groupId>
  57. <artifactId>junit-vintage-engine</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- 通用包 -->
  62. <dependency>
  63. <groupId>com.baomidou</groupId>
  64. <artifactId>mybatis-plus-boot-starter</artifactId>
  65. <version>3.2.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.springfox</groupId>
  69. <artifactId>springfox-swagger2</artifactId>
  70. <version>2.9.2</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.springfox</groupId>
  74. <artifactId>springfox-swagger-ui</artifactId>
  75. <version>2.9.2</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-ui -->
  78. <dependency>
  79. <groupId>com.github.xiaoymin</groupId>
  80. <artifactId>knife4j-spring-ui</artifactId>
  81. <version>2.0.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.xiaoymin</groupId>
  85. <artifactId>knife4j-spring-boot-starter</artifactId>
  86. <!--在引用时请在maven中央仓库搜索最新版本号-->
  87. <version>2.0.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.google.guava</groupId>
  91. <artifactId>guava</artifactId>
  92. <version>27.0.1-jre</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.alibaba</groupId>
  96. <artifactId>fastjson</artifactId>
  97. <version>1.2.47</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>javax.validation</groupId>
  101. <artifactId>validation-api</artifactId>
  102. <version>2.0.1.Final</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-lang3</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>commons-collections</groupId>
  110. <artifactId>commons-collections</artifactId>
  111. <version>3.2.2</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-codec</groupId>
  115. <artifactId>commons-codec</artifactId>
  116. <version>1.14</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.commons</groupId>
  120. <artifactId>commons-text</artifactId>
  121. <version>1.8</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>commons-beanutils</groupId>
  125. <artifactId>commons-beanutils</artifactId>
  126. <version>1.9.4</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>cn.hutool</groupId>
  130. <artifactId>hutool-all</artifactId>
  131. <version>5.3.1</version>
  132. </dependency>
  133. </dependencies>
  134. <build>
  135. <plugins>
  136. <plugin>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-maven-plugin</artifactId>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>