pom.xml 20 KB

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