pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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>employmentsite</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>employmentsite</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>com.alibaba</groupId>
  51. <artifactId>druid-spring-boot-starter</artifactId>
  52. <version>1.2.11</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.github.pagehelper</groupId>
  56. <artifactId>pagehelper-spring-boot-starter</artifactId>
  57. <version>1.4.3</version>
  58. </dependency>
  59. <!-- devtools -->
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>1.18.20</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-devtools</artifactId>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. <version>3.5</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-net</groupId>
  77. <artifactId>commons-net</artifactId>
  78. <version>3.6</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-beanutils</groupId>
  82. <artifactId>commons-beanutils</artifactId>
  83. <version>1.9.4</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.httpcomponents</groupId>
  87. <artifactId>httpclient</artifactId>
  88. <version>4.5.9</version>
  89. </dependency>
  90. <!-- redis -->
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-data-redis</artifactId>
  94. </dependency>
  95. <!-- 高版本redis的lettuce需要commons-pool2 -->
  96. <dependency>
  97. <groupId>org.apache.commons</groupId>
  98. <artifactId>commons-pool2</artifactId>
  99. </dependency>
  100. <!-- poi -->
  101. <dependency>
  102. <groupId>org.apache.poi</groupId>
  103. <artifactId>poi</artifactId>
  104. <version>4.0.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi-ooxml</artifactId>
  109. <version>4.0.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.poi</groupId>
  113. <artifactId>poi-scratchpad</artifactId>
  114. <version>4.0.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.auth0</groupId>
  118. <artifactId>java-jwt</artifactId>
  119. <version>3.9.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.json</groupId>
  123. <artifactId>json</artifactId>
  124. <version>20190722</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.alibaba</groupId>
  128. <artifactId>fastjson</artifactId>
  129. <version>1.2.47</version>
  130. </dependency>
  131. <!--<dependency>
  132. <groupId>io.github.ms100</groupId>
  133. <artifactId>cache-as-multi</artifactId>
  134. <version>1.1.3</version>
  135. </dependency>-->
  136. <dependency>
  137. <groupId>aspose-words-15.8.0-jdk16.jar</groupId>
  138. <artifactId>aspose-words</artifactId>
  139. <version>15.8.0</version>
  140. <scope>system</scope>
  141. <systemPath>${project.basedir}\lib\aspose-words-15.8.0-jdk16.jar</systemPath>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.belerweb</groupId>
  145. <artifactId>pinyin4j</artifactId>
  146. <version>2.5.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.google.zxing</groupId>
  150. <artifactId>core</artifactId>
  151. <version>3.4.0</version>
  152. <scope>compile</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.google.zxing</groupId>
  156. <artifactId>javase</artifactId>
  157. <version>3.4.0</version>
  158. <scope>compile</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.github.binarywang</groupId>
  162. <artifactId>weixin-java-mp</artifactId>
  163. <version>3.7.0</version>
  164. </dependency>
  165. <!-- Quartz定时任务 -->
  166. <dependency>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-starter-quartz</artifactId>
  169. </dependency>
  170. </dependencies>
  171. <build>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-maven-plugin</artifactId>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.mybatis.generator</groupId>
  179. <artifactId>mybatis-generator-maven-plugin</artifactId>
  180. <version>1.4.1</version>
  181. <configuration>
  182. <!--配置文件的位置-->
  183. <configurationFile>${basedir}/src/main/resources/generatorConfig.xml</configurationFile>
  184. <verbose>true</verbose>
  185. <overwrite>true</overwrite>
  186. </configuration>
  187. <executions>
  188. <execution>
  189. <id>Generate MyBatis Artifacts</id>
  190. <phase>deploy</phase>
  191. <goals>
  192. <goal>generate</goal>
  193. </goals>
  194. </execution>
  195. </executions>
  196. <dependencies>
  197. <dependency>
  198. <groupId>org.mybatis.generator</groupId>
  199. <artifactId>mybatis-generator-core</artifactId>
  200. <version>1.4.1</version>
  201. </dependency>
  202. </dependencies>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.springframework.boot</groupId>
  206. <artifactId>spring-boot-maven-plugin</artifactId>
  207. <configuration>
  208. <includeSystemScope>true</includeSystemScope>
  209. </configuration>
  210. </plugin>
  211. </plugins>
  212. <resources>
  213. <resource>
  214. <filtering>true</filtering>
  215. <directory>src/main/resources</directory>
  216. <excludes>
  217. <exclude>static/**</exclude>
  218. </excludes>
  219. </resource>
  220. </resources>
  221. </build>
  222. </project>