pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.5.0</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <mysql.version>8.0.13</mysql.version>
  15. <easypoi.version>3.2.0</easypoi.version>
  16. <swagger2.version>2.9.2</swagger2.version>
  17. <project.version>1.0.5-RELEASE</project.version>
  18. <java.version>1.8</java.version>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. </properties>
  22. <groupId>com.education</groupId>
  23. <artifactId>education</artifactId>
  24. <version>1.0.5-RELEASE</version>
  25. <name>education</name>
  26. <modules>
  27. <module>education-api</module>
  28. <module>education-common</module>
  29. <module>education-model</module>
  30. <module>education-common-api</module>
  31. <module>education-business</module>
  32. <module>education-canal</module>
  33. <module>education-auth</module>
  34. <module>education-ai</module>
  35. </modules>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <version>1.16.18</version>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sun.mail</groupId>
  45. <artifactId>javax.mail</artifactId>
  46. <version>1.6.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>de.ruedigermoeller</groupId>
  50. <artifactId>fst</artifactId>
  51. <version>2.48</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-validation</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba.otter</groupId>
  59. <artifactId>canal.client</artifactId>
  60. <version>1.1.4</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.flywaydb</groupId>
  64. <artifactId>flyway-core</artifactId>
  65. <version>5.2.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>junit</groupId>
  69. <artifactId>junit</artifactId>
  70. <version>4.13.2</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-amqp</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.json</groupId>
  79. <artifactId>json</artifactId>
  80. <version>20180813</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.javassist</groupId>
  84. <artifactId>javassist</artifactId>
  85. <version>3.21.0-GA</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.fasterxml.jackson.core</groupId>
  89. <artifactId>jackson-databind</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-data-redis</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-aop</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.jfinal</groupId>
  101. <artifactId>jfinal</artifactId>
  102. <version>4.8</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.jsoup</groupId>
  106. <artifactId>jsoup</artifactId>
  107. <version>1.10.2</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.jfinal</groupId>
  111. <artifactId>jfinal-weixin</artifactId>
  112. <version>2.3</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.belerweb</groupId>
  116. <artifactId>pinyin4j</artifactId>
  117. <version>2.5.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>commons-fileupload</groupId>
  121. <artifactId>commons-fileupload</artifactId>
  122. <version>1.4</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-jdbc</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-web</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-freemarker</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-starter-quartz</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>mysql</groupId>
  142. <artifactId>mysql-connector-java</artifactId>
  143. <version>8.0.13</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-starter-websocket</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-starter-test</artifactId>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>io.shardingsphere</groupId>
  156. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  157. <version>3.1.0.M1</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.github.ben-manes.caffeine</groupId>
  161. <artifactId>caffeine</artifactId>
  162. </dependency>
  163. <dependency>
  164. <groupId>io.jsonwebtoken</groupId>
  165. <artifactId>jjwt</artifactId>
  166. <version>0.9.1</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.slf4j</groupId>
  170. <artifactId>slf4j-api</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>ch.qos.logback</groupId>
  174. <artifactId>logback-core</artifactId>
  175. </dependency>
  176. <dependency>
  177. <groupId>commons-logging</groupId>
  178. <artifactId>commons-logging</artifactId>
  179. <version>1.2</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>commons-io</groupId>
  183. <artifactId>commons-io</artifactId>
  184. <version>2.5</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.commons</groupId>
  188. <artifactId>commons-pool2</artifactId>
  189. <version>2.3</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.google.zxing</groupId>
  193. <artifactId>javase</artifactId>
  194. <version>3.3.0</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>commons-codec</groupId>
  198. <artifactId>commons-codec</artifactId>
  199. <version>1.10</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>io.springfox</groupId>
  203. <artifactId>springfox-swagger2</artifactId>
  204. <version>${swagger2.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>io.springfox</groupId>
  208. <artifactId>springfox-swagger-ui</artifactId>
  209. <version>${swagger2.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>commons-lang</groupId>
  213. <artifactId>commons-lang</artifactId>
  214. <version>2.6</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.commons</groupId>
  218. <artifactId>commons-lang3</artifactId>
  219. <version>3.8.1</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>ch.qos.logback</groupId>
  223. <artifactId>logback-classic</artifactId>
  224. </dependency>
  225. <dependency>
  226. <groupId>cn.afterturn</groupId>
  227. <artifactId>easypoi-base</artifactId>
  228. <version>${easypoi.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>cn.afterturn</groupId>
  232. <artifactId>easypoi-web</artifactId>
  233. <version>${easypoi.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>cn.afterturn</groupId>
  237. <artifactId>easypoi-annotation</artifactId>
  238. <version>${easypoi.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.alibaba</groupId>
  242. <artifactId>fastjson</artifactId>
  243. <version>1.2.78</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.baomidou</groupId>
  247. <artifactId>mybatis-plus-boot-starter</artifactId>
  248. <version>3.4.0</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.redisson</groupId>
  252. <artifactId>redisson</artifactId>
  253. <version>3.12.5</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>cn.hutool</groupId>
  257. <artifactId>hutool-all</artifactId>
  258. <version>5.7.13</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.qcloud</groupId>
  262. <artifactId>cos_api</artifactId>
  263. <version>5.6.54</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.lionsoul</groupId>
  267. <artifactId>ip2region</artifactId>
  268. <version>2.6.1</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>jakarta.validation</groupId>
  272. <artifactId>jakarta.validation-api</artifactId>
  273. <version>3.0.2</version>
  274. </dependency>
  275. </dependencies>
  276. <build>
  277. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  278. <plugins>
  279. <!-- 打包跳过单元测试 -->
  280. <plugin>
  281. <groupId>org.apache.maven.plugins</groupId>
  282. <artifactId>maven-surefire-plugin</artifactId>
  283. <version>2.20.1</version>
  284. <configuration>
  285. <!-- 不指定单元测试 -->
  286. <skipTests>true</skipTests>
  287. </configuration>
  288. </plugin>
  289. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  290. <plugin>
  291. <artifactId>maven-clean-plugin</artifactId>
  292. <version>3.1.0</version>
  293. </plugin>
  294. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  295. <plugin>
  296. <artifactId>maven-resources-plugin</artifactId>
  297. <version>3.0.2</version>
  298. </plugin>
  299. <plugin>
  300. <artifactId>maven-compiler-plugin</artifactId>
  301. <version>3.8.0</version>
  302. </plugin>
  303. <plugin>
  304. <artifactId>maven-surefire-plugin</artifactId>
  305. <version>2.22.1</version>
  306. </plugin>
  307. <plugin>
  308. <artifactId>maven-jar-plugin</artifactId>
  309. <version>3.0.2</version>
  310. </plugin>
  311. <plugin>
  312. <artifactId>maven-install-plugin</artifactId>
  313. <version>2.5.2</version>
  314. </plugin>
  315. <plugin>
  316. <artifactId>maven-deploy-plugin</artifactId>
  317. <version>2.8.2</version>
  318. </plugin>
  319. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  320. <plugin>
  321. <artifactId>maven-site-plugin</artifactId>
  322. <version>3.7.1</version>
  323. </plugin>
  324. <plugin>
  325. <artifactId>maven-project-info-reports-plugin</artifactId>
  326. <version>3.0.0</version>
  327. </plugin>
  328. </plugins>
  329. </pluginManagement>
  330. </build>
  331. </project>