pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yaoxiang</groupId>
  7. <artifactId>diagnosis</artifactId>
  8. <version>1.0</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <java.version>1.8</java.version>
  14. <swagger.knife4j.version>2.0.8</swagger.knife4j.version>
  15. </properties>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.5.6</version>
  20. <relativePath/>
  21. </parent>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-websocket</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-undertow</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-jpa</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-security</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-redis</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.session</groupId>
  59. <artifactId>spring-session-data-redis</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-actuator</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>junit</groupId>
  72. <artifactId>junit</artifactId>
  73. <version>4.13</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>mysql</groupId>
  78. <artifactId>mysql-connector-java</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.code.gson</groupId>
  82. <artifactId>gson</artifactId>
  83. <version>2.8.5</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-lang3</artifactId>
  88. <version>3.7</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.poi</groupId>
  92. <artifactId>poi-ooxml</artifactId>
  93. <version>3.17</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.poi</groupId>
  97. <artifactId>ooxml-schemas</artifactId>
  98. <version>1.3</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-pool2</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.minio</groupId>
  106. <artifactId>minio</artifactId>
  107. <version>6.0.11</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>druid</artifactId>
  112. <version>1.1.21</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.xiaoymin</groupId>
  121. <artifactId>knife4j-spring-boot-starter</artifactId>
  122. <version>${swagger.knife4j.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.webjars</groupId>
  126. <artifactId>webjars-locator-core</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.webjars</groupId>
  130. <artifactId>sockjs-client</artifactId>
  131. <version>1.0.2</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.webjars</groupId>
  135. <artifactId>stomp-websocket</artifactId>
  136. <version>2.3.3</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.webjars</groupId>
  140. <artifactId>bootstrap</artifactId>
  141. <version>3.3.7</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.webjars</groupId>
  145. <artifactId>jquery</artifactId>
  146. <version>3.1.1-1</version>
  147. </dependency>
  148. </dependencies>
  149. <build>
  150. <finalName>${project.artifactId}</finalName>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. <configuration>
  156. <excludes>
  157. <exclude>
  158. <groupId>org.projectlombok</groupId>
  159. <artifactId>lombok</artifactId>
  160. </exclude>
  161. </excludes>
  162. </configuration>
  163. </plugin>
  164. <plugin>
  165. <groupId>org.apache.maven.plugins</groupId>
  166. <artifactId>maven-compiler-plugin</artifactId>
  167. <configuration>
  168. <source>${java.version}</source>
  169. <target>${java.version}</target>
  170. </configuration>
  171. </plugin>
  172. </plugins>
  173. </build>
  174. </project>