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