pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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.7.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.bowintek</groupId>
  12. <artifactId>shvvue</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>shvvue</name>
  15. <description>vue3 + antd 3 + mssql</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <!-- jdbc and mybatis -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-jdbc</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. <version>2.2.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.fasterxml.jackson.datatype</groupId>
  41. <artifactId>jackson-datatype-jsr310</artifactId>
  42. <version>2.13.3</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.postgresql</groupId>
  51. <artifactId>postgresql</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>druid-spring-boot-starter</artifactId>
  56. <version>1.2.11</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.github.pagehelper</groupId>
  60. <artifactId>pagehelper-spring-boot-starter</artifactId>
  61. <version>1.4.3</version>
  62. </dependency>
  63. <!-- devtools -->
  64. <dependency>
  65. <groupId>org.projectlombok</groupId>
  66. <artifactId>lombok</artifactId>
  67. <version>1.18.20</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-devtools</artifactId>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. <version>3.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-net</groupId>
  81. <artifactId>commons-net</artifactId>
  82. <version>3.6</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-beanutils</groupId>
  86. <artifactId>commons-beanutils</artifactId>
  87. <version>1.9.4</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.httpcomponents</groupId>
  91. <artifactId>httpclient</artifactId>
  92. <version>4.5.9</version>
  93. </dependency>
  94. <!-- redis -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-data-redis</artifactId>
  98. </dependency>
  99. <!-- 高版本redis的lettuce需要commons-pool2 -->
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-pool2</artifactId>
  103. </dependency>
  104. <!-- poi -->
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi</artifactId>
  108. <version>4.0.0</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi-ooxml</artifactId>
  113. <version>4.0.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-scratchpad</artifactId>
  118. <version>4.0.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.auth0</groupId>
  122. <artifactId>java-jwt</artifactId>
  123. <version>3.9.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.json</groupId>
  127. <artifactId>json</artifactId>
  128. <version>20190722</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>fastjson</artifactId>
  133. <version>1.2.47</version>
  134. </dependency>
  135. <!--<dependency>
  136. <groupId>io.github.ms100</groupId>
  137. <artifactId>cache-as-multi</artifactId>
  138. <version>1.1.3</version>
  139. </dependency>-->
  140. <dependency>
  141. <groupId>aspose-words-15.8.0-jdk16.jar</groupId>
  142. <artifactId>aspose-words</artifactId>
  143. <version>15.8.0</version>
  144. <scope>system</scope>
  145. <systemPath>${project.basedir}/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.aspectj</groupId>
  149. <artifactId>aspectjweaver</artifactId>
  150. <version>${aspectj.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.aspectj</groupId>
  154. <artifactId>aspectjrt</artifactId>
  155. <version>${aspectj.version}</version>
  156. </dependency>
  157. </dependencies>
  158. <build>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.springframework.boot</groupId>
  162. <artifactId>spring-boot-maven-plugin</artifactId>
  163. </plugin>
  164. <plugin>
  165. <groupId>org.mybatis.generator</groupId>
  166. <artifactId>mybatis-generator-maven-plugin</artifactId>
  167. <version>1.4.1</version>
  168. <configuration>
  169. <!--配置文件的位置-->
  170. <configurationFile>${basedir}/src/main/resources/generatorConfig.xml</configurationFile>
  171. <verbose>true</verbose>
  172. <overwrite>true</overwrite>
  173. </configuration>
  174. <executions>
  175. <execution>
  176. <id>Generate MyBatis Artifacts</id>
  177. <phase>deploy</phase>
  178. <goals>
  179. <goal>generate</goal>
  180. </goals>
  181. </execution>
  182. </executions>
  183. <dependencies>
  184. <dependency>
  185. <groupId>org.mybatis.generator</groupId>
  186. <artifactId>mybatis-generator-core</artifactId>
  187. <version>1.4.1</version>
  188. </dependency>
  189. </dependencies>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-maven-plugin</artifactId>
  194. <configuration>
  195. <includeSystemScope>true</includeSystemScope>
  196. </configuration>
  197. </plugin>
  198. </plugins>
  199. <resources>
  200. <resource>
  201. <directory>src/main/java</directory>
  202. <includes>
  203. <include>**/*</include>
  204. </includes>
  205. </resource>
  206. <resource>
  207. <filtering>true</filtering>
  208. <directory>src/main/resources</directory>
  209. <excludes>
  210. <exclude>static/**</exclude>
  211. </excludes>
  212. </resource>
  213. <resource>
  214. <directory>src/main/resources</directory>
  215. <targetPath>BOOT-INF/</targetPath>
  216. <includes>
  217. <include>/lib/*.jar</include>
  218. </includes>
  219. </resource>
  220. </resources>
  221. </build>
  222. </project>