pom.xml 20 KB

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