pom.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.jeecgframework.boot</groupId>
  5. <artifactId>jeecg-boot-parent</artifactId>
  6. <version>2.0.2</version>
  7. <packaging>pom</packaging>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.2.3.RELEASE</version>
  12. <relativePath/>
  13. </parent>
  14. <modules>
  15. <module>jeecg-boot-base-common</module>
  16. <module>module-common</module>
  17. <module>jeecg-boot-module-activiti</module>
  18. <module>module-crawler</module>
  19. <module>module-kuaishou</module>
  20. <module>module-toutiao</module>
  21. <module>module-media</module>
  22. <module>module-ctop</module>
  23. <module>performance-appraisal</module>
  24. <module>module-check</module>
  25. <module>module-oa</module>
  26. <module>jeecg-boot-module-system</module>
  27. <module>module-job-bytedance</module>
  28. <module>module-job-kuaishou</module>
  29. <module>module-callback</module>
  30. </modules>
  31. <distributionManagement>
  32. <repository>
  33. <id>jeecg</id>
  34. <name>jeecg Repository</name>
  35. <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
  36. </repository>
  37. <snapshotRepository>
  38. <id>jeecg-snapshots</id>
  39. <name>jeecg Snapshot Repository</name>
  40. <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
  41. </snapshotRepository>
  42. </distributionManagement>
  43. <repositories>
  44. <repository>
  45. <id>bintray-americanexpress-maven</id>
  46. <url>https://dl.bintray.com/americanexpress/maven</url>
  47. </repository>
  48. <repository>
  49. <id>aliyun</id>
  50. <name>aliyun Repository</name>
  51. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  52. <snapshots>
  53. <enabled>false</enabled>
  54. </snapshots>
  55. </repository>
  56. <repository>
  57. <id>jeecg</id>
  58. <name>jeecg Repository</name>
  59. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  60. <snapshots>
  61. <enabled>false</enabled>
  62. </snapshots>
  63. </repository>
  64. <repository>
  65. <id>maven-3rdparty</id>
  66. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  67. </repository>
  68. <repository>
  69. <id>ctop</id>
  70. <url>http://118.24.244.213:8081/repository/3rd_part</url>
  71. </repository>
  72. </repositories>
  73. <pluginRepositories>
  74. <pluginRepository>
  75. <snapshots>
  76. <enabled>true</enabled>
  77. </snapshots>
  78. <id>ctop</id>
  79. <url>http://118.24.244.213:8081/repository/3rd_part</url>
  80. </pluginRepository>
  81. </pluginRepositories>
  82. <properties>
  83. <jeecgboot.common.version>2.0.2</jeecgboot.common.version>
  84. <java.version>1.8</java.version>
  85. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  86. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  87. <mybatis-plus.version>3.1.2</mybatis-plus.version>
  88. <druid.version>1.1.10</druid.version>
  89. <commons.version>2.6</commons.version>
  90. <aliyun-java-sdk-core.version>3.5.0</aliyun-java-sdk-core.version>
  91. <aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>
  92. </properties>
  93. <dependencies>
  94. <!--集成springmvc框架并实现自动配置 -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-web</artifactId>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>ch.qos.logback</groupId>
  101. <artifactId>logback-classic</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-mail</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-test</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-aop</artifactId>
  117. </dependency>
  118. <!-- 第三方登录 -->
  119. <dependency>
  120. <groupId>com.xkcoding.justauth</groupId>
  121. <artifactId>justauth-spring-boot-starter</artifactId>
  122. <version>1.3.2</version>
  123. <exclusions>
  124. <exclusion>
  125. <artifactId>fastjson</artifactId>
  126. <groupId>com.alibaba</groupId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-actuator</artifactId>
  133. </dependency>
  134. <!-- commons -->
  135. <dependency>
  136. <groupId>commons-io</groupId>
  137. <artifactId>commons-io</artifactId>
  138. <version>${commons.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-lang</groupId>
  142. <artifactId>commons-lang</artifactId>
  143. <version>${commons.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.google.guava</groupId>
  147. <artifactId>guava</artifactId>
  148. <version>26.0-jre</version>
  149. </dependency>
  150. <!-- freemarker -->
  151. <dependency>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-starter-freemarker</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.alibaba</groupId>
  157. <artifactId>easyexcel</artifactId>
  158. <version>1.1.2-beat1</version>
  159. </dependency>
  160. <!-- Lombok -->
  161. <dependency>
  162. <groupId>org.projectlombok</groupId>
  163. <artifactId>lombok</artifactId>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.bstek.ureport</groupId>
  167. <artifactId>ureport2-console</artifactId>
  168. <version>2.2.9</version>
  169. </dependency>
  170. <!-- mybatis-plus -->
  171. <dependency>
  172. <groupId>com.baomidou</groupId>
  173. <artifactId>mybatis-plus-boot-starter</artifactId>
  174. <version>${mybatis-plus.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.baomidou</groupId>
  178. <artifactId>mybatis-plus-extension</artifactId>
  179. <version>${mybatis-plus.version}</version>
  180. </dependency>
  181. <!-- druid -->
  182. <dependency>
  183. <groupId>com.alibaba</groupId>
  184. <artifactId>druid-spring-boot-starter</artifactId>
  185. <version>${druid.version}</version>
  186. </dependency>
  187. <!-- 动态数据源 -->
  188. <dependency>
  189. <groupId>com.baomidou</groupId>
  190. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  191. <version>2.5.4</version>
  192. </dependency>
  193. <!-- json -->
  194. <dependency>
  195. <groupId>com.alibaba</groupId>
  196. <artifactId>fastjson</artifactId>
  197. <version>1.2.56</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>com.github.pagehelper</groupId>
  201. <artifactId>pagehelper-spring-boot-starter</artifactId>
  202. <!-- 特别注意版本问题 -->
  203. <version>1.2.3</version>
  204. </dependency>
  205. <!--mysql-->
  206. <dependency>
  207. <groupId>mysql</groupId>
  208. <artifactId>mysql-connector-java</artifactId>
  209. <version>5.1.47</version>
  210. <scope>runtime</scope>
  211. </dependency>
  212. <!--sqlserver-->
  213. <dependency>
  214. <groupId>net.sourceforge.jtds</groupId>
  215. <artifactId>jtds</artifactId>
  216. <version>1.3.1</version>
  217. <scope>runtime</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>com.microsoft.sqlserver</groupId>
  221. <artifactId>mssql-jdbc</artifactId>
  222. <version>7.2.1.jre8</version>
  223. <scope>runtime</scope>
  224. </dependency>
  225. <!-- mini文件存储服务 -->
  226. <dependency>
  227. <groupId>io.minio</groupId>
  228. <artifactId>minio</artifactId>
  229. <version>4.0.0</version>
  230. <exclusions>
  231. <exclusion>
  232. <artifactId>guava</artifactId>
  233. <groupId>com.google.guava</groupId>
  234. </exclusion>
  235. <exclusion>
  236. <artifactId>jsr305</artifactId>
  237. <groupId>com.google.code.findbugs</groupId>
  238. </exclusion>
  239. </exclusions>
  240. </dependency>
  241. <!-- Quartz定时任务 -->
  242. <dependency>
  243. <groupId>org.springframework.boot</groupId>
  244. <artifactId>spring-boot-starter-quartz</artifactId>
  245. </dependency>
  246. <!--JWT-->
  247. <dependency>
  248. <groupId>com.auth0</groupId>
  249. <artifactId>java-jwt</artifactId>
  250. <version>3.7.0</version>
  251. </dependency>
  252. <!--shiro-->
  253. <dependency>
  254. <groupId>org.apache.shiro</groupId>
  255. <artifactId>shiro-spring-boot-starter</artifactId>
  256. <version>1.4.0</version>
  257. </dependency>
  258. <!-- Swagger API文档 -->
  259. <dependency>
  260. <groupId>io.springfox</groupId>
  261. <artifactId>springfox-swagger2</artifactId>
  262. <version>2.9.2</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>io.springfox</groupId>
  266. <artifactId>springfox-swagger-ui</artifactId>
  267. <version>2.9.2</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.github.xiaoymin</groupId>
  271. <artifactId>swagger-bootstrap-ui</artifactId>
  272. <version>1.9.3</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>io.springfox</groupId>
  276. <artifactId>springfox-bean-validators</artifactId>
  277. <version>2.9.2</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.springframework.boot</groupId>
  281. <artifactId>spring-boot-devtools</artifactId>
  282. <scope>runtime</scope>
  283. <optional>true</optional>
  284. </dependency>
  285. <!-- Redis -->
  286. <dependency>
  287. <groupId>org.springframework.boot</groupId>
  288. <artifactId>spring-boot-starter-data-redis</artifactId>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.apache.commons</groupId>
  292. <artifactId>commons-pool2</artifactId>
  293. </dependency>
  294. <!-- 代码生成器 -->
  295. <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=344850 -->
  296. <dependency>
  297. <groupId>org.jeecgframework.boot</groupId>
  298. <artifactId>codegenerate</artifactId>
  299. <version>1.2.0</version>
  300. </dependency>
  301. <!-- AutoPoi Excel工具类-->
  302. <dependency>
  303. <groupId>org.jeecgframework</groupId>
  304. <artifactId>autopoi-web</artifactId>
  305. <version>1.1.1</version>
  306. <exclusions>
  307. <exclusion>
  308. <groupId>commons-codec</groupId>
  309. <artifactId>commons-codec</artifactId>
  310. </exclusion>
  311. </exclusions>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.apache.httpcomponents</groupId>
  315. <artifactId>httpclient</artifactId>
  316. <version>4.5.9</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>javax.persistence</groupId>
  320. <artifactId>javax.persistence-api</artifactId>
  321. <version>2.2</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.springframework.boot</groupId>
  325. <artifactId>spring-boot-starter-data-jpa</artifactId>
  326. </dependency>
  327. <dependency>
  328. <groupId>org.apache.httpcomponents</groupId>
  329. <artifactId>httpcore</artifactId>
  330. <version>4.4</version>
  331. </dependency>
  332. <dependency>
  333. <groupId>com.squareup.retrofit2</groupId>
  334. <artifactId>retrofit</artifactId>
  335. <version>2.6.0</version>
  336. </dependency>
  337. <dependency>
  338. <groupId>org.apache.pdfbox</groupId>
  339. <artifactId>fontbox</artifactId>
  340. <version>2.0.15</version>
  341. </dependency>
  342. <dependency>
  343. <groupId>org.seleniumhq.selenium</groupId>
  344. <artifactId>selenium-java</artifactId>
  345. <version>3.141.59</version>
  346. </dependency>
  347. <dependency>
  348. <groupId>org.seleniumhq.selenium</groupId>
  349. <artifactId>selenium-firefox-driver</artifactId>
  350. <version>3.141.59</version>
  351. </dependency>
  352. <dependency>
  353. <groupId>org.json</groupId>
  354. <artifactId>json</artifactId>
  355. <version>LATEST</version>
  356. </dependency>
  357. <dependency>
  358. <groupId>com.github.binarywang</groupId>
  359. <artifactId>weixin-java-cp</artifactId>
  360. <version>3.6.0</version>
  361. </dependency>
  362. <dependency>
  363. <groupId>us.codecraft</groupId>
  364. <artifactId>webmagic-core</artifactId>
  365. <version>0.7.3</version>
  366. </dependency>
  367. <dependency>
  368. <groupId>us.codecraft</groupId>
  369. <artifactId>webmagic-extension</artifactId>
  370. <version>0.7.3</version>
  371. </dependency>
  372. <dependency>
  373. <groupId>net.sourceforge.htmlunit</groupId>
  374. <artifactId>htmlunit</artifactId>
  375. <version>2.36.0</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>io.appium</groupId>
  379. <artifactId>java-client</artifactId>
  380. <version>7.2.0</version>
  381. </dependency>
  382. <!-- <dependency>-->
  383. <!-- <groupId>io.aexp.nodes.graphql</groupId>-->
  384. <!-- <artifactId>nodes</artifactId>-->
  385. <!-- <version>0.4.0</version>-->
  386. <!-- </dependency>-->
  387. <dependency>
  388. <groupId>commons-codec</groupId>
  389. <artifactId>commons-codec</artifactId>
  390. <version>1.11</version>
  391. </dependency>
  392. <!-- mini文件存储服务 -->
  393. <dependency>
  394. <groupId>io.minio</groupId>
  395. <artifactId>minio</artifactId>
  396. <version>4.0.0</version>
  397. <exclusions>
  398. <exclusion>
  399. <artifactId>guava</artifactId>
  400. <groupId>com.google.guava</groupId>
  401. </exclusion>
  402. <exclusion>
  403. <artifactId>jsr305</artifactId>
  404. <groupId>com.google.code.findbugs</groupId>
  405. </exclusion>
  406. </exclusions>
  407. </dependency>
  408. <dependency>
  409. <groupId>cn.hutool</groupId>
  410. <artifactId>hutool-all</artifactId>
  411. <version>4.5.11</version>
  412. </dependency>
  413. <!-- 阿里云短信 -->
  414. <dependency>
  415. <groupId>com.aliyun</groupId>
  416. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  417. <version>${aliyun-java-sdk-dysmsapi.version}</version>
  418. </dependency>
  419. <dependency>
  420. <groupId>com.aliyun</groupId>
  421. <artifactId>aliyun-java-sdk-core</artifactId>
  422. <version>${aliyun-java-sdk-core.version}</version>
  423. </dependency>
  424. <dependency>
  425. <groupId>com.aliyun.oss</groupId>
  426. <artifactId>aliyun-sdk-oss</artifactId>
  427. <version>2.8.3</version>
  428. </dependency>
  429. <dependency>
  430. <groupId>com.aliyun</groupId>
  431. <artifactId>aliyun-java-sdk-mts</artifactId>
  432. <version>2.5.2</version>
  433. </dependency>
  434. <dependency>
  435. <groupId>org.bytedeco</groupId>
  436. <artifactId>javacv</artifactId>
  437. <version>1.4.2</version>
  438. </dependency>
  439. <dependency>
  440. <groupId>org.bytedeco</groupId>
  441. <artifactId>javacv-platform</artifactId>
  442. <version>1.4.2</version>
  443. </dependency>
  444. <!--<dependency>
  445. <groupId>com.qcloud</groupId>
  446. <artifactId>cos_api</artifactId>
  447. <version>5.6.24</version>
  448. </dependency>-->
  449. <dependency>
  450. <groupId>com.tencentcloudapi</groupId>
  451. <artifactId>tencentcloud-sdk-java</artifactId>
  452. <version>3.1.62</version><!-- 注:这里只是示例版本号,请获取并替换为 最新的版本号 -->
  453. </dependency>
  454. </dependencies>
  455. <dependencyManagement>
  456. <dependencies>
  457. <!-- jeecg-boot-base-common -->
  458. <dependency>
  459. <groupId>org.jeecgframework.boot</groupId>
  460. <artifactId>jeecg-boot-base-common</artifactId>
  461. <version>${jeecgboot.common.version}</version>
  462. </dependency>
  463. </dependencies>
  464. </dependencyManagement>
  465. <build>
  466. <plugins>
  467. <!--<plugin>
  468. <groupId>org.springframework.boot</groupId>
  469. <artifactId>spring-boot-maven-plugin</artifactId>
  470. </plugin>
  471. 指定JDK编译版本 -->
  472. <plugin> <!--groovy的编译--> <!--https://github.com/groovy/GMavenPlus/wiki/Examples-->
  473. <groupId>org.codehaus.gmavenplus</groupId>
  474. <artifactId>gmavenplus-plugin</artifactId>
  475. <version>1.6.1</version>
  476. <executions>
  477. <execution>
  478. <goals>
  479. <goal>addSources</goal>
  480. <goal>addTestSources</goal>
  481. <goal>generateStubs</goal>
  482. <goal>generateTestStubs</goal>
  483. <goal>compile</goal>
  484. <goal>compileTests</goal>
  485. <goal>removeStubs</goal>
  486. <goal>removeTestStubs</goal>
  487. </goals>
  488. </execution>
  489. </executions>
  490. </plugin>
  491. <plugin>
  492. <groupId>org.apache.maven.plugins</groupId>
  493. <artifactId>maven-compiler-plugin</artifactId>
  494. <configuration>
  495. <source>1.8</source>
  496. <target>1.8</target>
  497. <encoding>UTF-8</encoding>
  498. </configuration>
  499. </plugin>
  500. <!-- 打包跳过测试 -->
  501. <plugin>
  502. <groupId>org.apache.maven.plugins</groupId>
  503. <artifactId>maven-surefire-plugin</artifactId>
  504. <configuration>
  505. <skipTests>true</skipTests>
  506. </configuration>
  507. </plugin>
  508. <!-- &lt;!&ndash; 避免font文件的二进制文件格式压缩破坏 &ndash;&gt;-->
  509. <!-- <plugin>-->
  510. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  511. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  512. <!-- <configuration>-->
  513. <!-- <nonFilteredFileExtensions>-->
  514. <!-- <nonFilteredFileExtension>woff</nonFilteredFileExtension>-->
  515. <!-- <nonFilteredFileExtension>woff2</nonFilteredFileExtension>-->
  516. <!-- <nonFilteredFileExtension>eot</nonFilteredFileExtension>-->
  517. <!-- <nonFilteredFileExtension>ttf</nonFilteredFileExtension>-->
  518. <!-- <nonFilteredFileExtension>svg</nonFilteredFileExtension>-->
  519. <!-- </nonFilteredFileExtensions>-->
  520. <!-- </configuration>-->
  521. <!-- </plugin>-->
  522. </plugins>
  523. <resources>
  524. <resource>
  525. <directory>src/main/resources</directory>
  526. <filtering>true</filtering>
  527. </resource>
  528. <resource>
  529. <directory>src/main/java</directory>
  530. <includes>
  531. <include>**/*.xml</include>
  532. <include>**/*.json</include>
  533. <include>**/*.ftl</include>
  534. </includes>
  535. </resource>
  536. </resources>
  537. </build>
  538. </project>