pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. <groupId>com.qizhen</groupId>
  6. <artifactId>healsphere</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>qizhen</name>
  9. <description>qizhen</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. <mybatis-plus-boot-starter.version>3.2.0</mybatis-plus-boot-starter.version>
  16. <mybatis-spring-boot.version>2.1.1</mybatis-spring-boot.version>
  17. <druid.version>1.1.21</druid.version>
  18. <swagger.version>2.9.2</swagger.version>
  19. <!-- <poi.version>4.1.1</poi.version>-->
  20. <poi.version>5.2.3</poi.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <artifactId>log4j-to-slf4j</artifactId>
  25. <groupId>org.apache.logging.log4j</groupId>
  26. <version>2.17.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <artifactId>log4j-to-slf4j</artifactId>
  34. <groupId>org.apache.logging.log4j</groupId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.poi</groupId>
  45. <artifactId>poi</artifactId>
  46. <version>${poi.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi-ooxml</artifactId>
  51. <version>${poi.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>5.4.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>us.codecraft</groupId>
  60. <artifactId>webmagic-core</artifactId>
  61. <version>0.9.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>us.codecraft</groupId>
  65. <artifactId>webmagic-extension</artifactId>
  66. <version>0.9.0</version>
  67. </dependency>
  68. <dependency>
  69. <artifactId>fastjson</artifactId>
  70. <groupId>com.alibaba</groupId>
  71. <version>1.2.83</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <version>1.18.24</version>
  77. <scope>provided</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>easyexcel</artifactId>
  82. <version>4.0.3</version>
  83. </dependency>
  84. <!--swagger-->
  85. <!-- <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-swagger2</artifactId>
  88. <version>${swagger.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.springfox</groupId>
  92. <artifactId>springfox-swagger-ui</artifactId>
  93. <version>${swagger.version}</version>
  94. </dependency>-->
  95. <dependency>
  96. <groupId>jakarta.validation</groupId>
  97. <artifactId>jakarta.validation-api</artifactId>
  98. <version>2.0.1</version>
  99. </dependency>
  100. </dependencies>
  101. <dependencyManagement>
  102. <dependencies>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-dependencies</artifactId>
  106. <version>${spring-boot.version}</version>
  107. <type>pom</type>
  108. <scope>import</scope>
  109. </dependency>
  110. </dependencies>
  111. </dependencyManagement>
  112. <build>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-compiler-plugin</artifactId>
  117. <version>3.8.1</version>
  118. <configuration>
  119. <source>1.8</source>
  120. <target>1.8</target>
  121. <encoding>UTF-8</encoding>
  122. </configuration>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. <version>${spring-boot.version}</version>
  128. <configuration>
  129. <mainClass>com.qizhen.healsphere.Application</mainClass>
  130. <skip>true</skip>
  131. </configuration>
  132. <executions>
  133. <execution>
  134. <id>repackage</id>
  135. <goals>
  136. <goal>repackage</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>