pom.xml 19 KB

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