pom.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  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. <!-- Lombok -->
  156. <dependency>
  157. <groupId>org.projectlombok</groupId>
  158. <artifactId>lombok</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.bstek.ureport</groupId>
  162. <artifactId>ureport2-console</artifactId>
  163. <version>2.2.9</version>
  164. </dependency>
  165. <!-- mybatis-plus -->
  166. <dependency>
  167. <groupId>com.baomidou</groupId>
  168. <artifactId>mybatis-plus-boot-starter</artifactId>
  169. <version>${mybatis-plus.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.baomidou</groupId>
  173. <artifactId>mybatis-plus-extension</artifactId>
  174. <version>${mybatis-plus.version}</version>
  175. </dependency>
  176. <!-- druid -->
  177. <dependency>
  178. <groupId>com.alibaba</groupId>
  179. <artifactId>druid-spring-boot-starter</artifactId>
  180. <version>${druid.version}</version>
  181. </dependency>
  182. <!-- 动态数据源 -->
  183. <dependency>
  184. <groupId>com.baomidou</groupId>
  185. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  186. <version>2.5.4</version>
  187. </dependency>
  188. <!-- json -->
  189. <dependency>
  190. <groupId>com.alibaba</groupId>
  191. <artifactId>fastjson</artifactId>
  192. <version>1.2.56</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.github.pagehelper</groupId>
  196. <artifactId>pagehelper-spring-boot-starter</artifactId>
  197. <!-- 特别注意版本问题 -->
  198. <version>1.2.3</version>
  199. </dependency>
  200. <!--mysql-->
  201. <dependency>
  202. <groupId>mysql</groupId>
  203. <artifactId>mysql-connector-java</artifactId>
  204. <version>5.1.47</version>
  205. <scope>runtime</scope>
  206. </dependency>
  207. <!--sqlserver-->
  208. <dependency>
  209. <groupId>net.sourceforge.jtds</groupId>
  210. <artifactId>jtds</artifactId>
  211. <version>1.3.1</version>
  212. <scope>runtime</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>com.microsoft.sqlserver</groupId>
  216. <artifactId>mssql-jdbc</artifactId>
  217. <version>7.2.1.jre8</version>
  218. <scope>runtime</scope>
  219. </dependency>
  220. <!-- mini文件存储服务 -->
  221. <dependency>
  222. <groupId>io.minio</groupId>
  223. <artifactId>minio</artifactId>
  224. <version>4.0.0</version>
  225. <exclusions>
  226. <exclusion>
  227. <artifactId>guava</artifactId>
  228. <groupId>com.google.guava</groupId>
  229. </exclusion>
  230. <exclusion>
  231. <artifactId>jsr305</artifactId>
  232. <groupId>com.google.code.findbugs</groupId>
  233. </exclusion>
  234. </exclusions>
  235. </dependency>
  236. <!-- Quartz定时任务 -->
  237. <dependency>
  238. <groupId>org.springframework.boot</groupId>
  239. <artifactId>spring-boot-starter-quartz</artifactId>
  240. </dependency>
  241. <!--JWT-->
  242. <dependency>
  243. <groupId>com.auth0</groupId>
  244. <artifactId>java-jwt</artifactId>
  245. <version>3.7.0</version>
  246. </dependency>
  247. <!--shiro-->
  248. <dependency>
  249. <groupId>org.apache.shiro</groupId>
  250. <artifactId>shiro-spring-boot-starter</artifactId>
  251. <version>1.4.0</version>
  252. </dependency>
  253. <!-- Swagger API文档 -->
  254. <dependency>
  255. <groupId>io.springfox</groupId>
  256. <artifactId>springfox-swagger2</artifactId>
  257. <version>2.9.2</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>io.springfox</groupId>
  261. <artifactId>springfox-swagger-ui</artifactId>
  262. <version>2.9.2</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>com.github.xiaoymin</groupId>
  266. <artifactId>swagger-bootstrap-ui</artifactId>
  267. <version>1.9.3</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>io.springfox</groupId>
  271. <artifactId>springfox-bean-validators</artifactId>
  272. <version>2.9.2</version>
  273. </dependency>
  274. <!-- Redis -->
  275. <dependency>
  276. <groupId>org.springframework.boot</groupId>
  277. <artifactId>spring-boot-starter-data-redis</artifactId>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.commons</groupId>
  281. <artifactId>commons-pool2</artifactId>
  282. </dependency>
  283. <!-- 代码生成器 -->
  284. <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=344850 -->
  285. <dependency>
  286. <groupId>org.jeecgframework.boot</groupId>
  287. <artifactId>codegenerate</artifactId>
  288. <version>1.2.0</version>
  289. </dependency>
  290. <!-- AutoPoi Excel工具类-->
  291. <dependency>
  292. <groupId>org.jeecgframework</groupId>
  293. <artifactId>autopoi-web</artifactId>
  294. <version>1.1.1</version>
  295. <exclusions>
  296. <exclusion>
  297. <groupId>commons-codec</groupId>
  298. <artifactId>commons-codec</artifactId>
  299. </exclusion>
  300. </exclusions>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.apache.httpcomponents</groupId>
  304. <artifactId>httpclient</artifactId>
  305. <version>4.5.9</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>javax.persistence</groupId>
  309. <artifactId>javax.persistence-api</artifactId>
  310. <version>2.2</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>org.springframework.boot</groupId>
  314. <artifactId>spring-boot-starter-data-jpa</artifactId>
  315. </dependency>
  316. <dependency>
  317. <groupId>org.apache.httpcomponents</groupId>
  318. <artifactId>httpcore</artifactId>
  319. <version>4.4</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>com.squareup.retrofit2</groupId>
  323. <artifactId>retrofit</artifactId>
  324. <version>2.6.0</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.apache.pdfbox</groupId>
  328. <artifactId>fontbox</artifactId>
  329. <version>2.0.15</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>org.seleniumhq.selenium</groupId>
  333. <artifactId>selenium-java</artifactId>
  334. <version>3.141.59</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.seleniumhq.selenium</groupId>
  338. <artifactId>selenium-firefox-driver</artifactId>
  339. <version>3.141.59</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.json</groupId>
  343. <artifactId>json</artifactId>
  344. <version>LATEST</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>com.github.binarywang</groupId>
  348. <artifactId>weixin-java-cp</artifactId>
  349. <version>3.6.0</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>us.codecraft</groupId>
  353. <artifactId>webmagic-core</artifactId>
  354. <version>0.7.3</version>
  355. </dependency>
  356. <dependency>
  357. <groupId>us.codecraft</groupId>
  358. <artifactId>webmagic-extension</artifactId>
  359. <version>0.7.3</version>
  360. </dependency>
  361. <dependency>
  362. <groupId>net.sourceforge.htmlunit</groupId>
  363. <artifactId>htmlunit</artifactId>
  364. <version>2.36.0</version>
  365. </dependency>
  366. <dependency>
  367. <groupId>io.appium</groupId>
  368. <artifactId>java-client</artifactId>
  369. <version>7.2.0</version>
  370. </dependency>
  371. <!-- <dependency>-->
  372. <!-- <groupId>io.aexp.nodes.graphql</groupId>-->
  373. <!-- <artifactId>nodes</artifactId>-->
  374. <!-- <version>0.4.0</version>-->
  375. <!-- </dependency>-->
  376. <dependency>
  377. <groupId>commons-codec</groupId>
  378. <artifactId>commons-codec</artifactId>
  379. <version>1.11</version>
  380. </dependency>
  381. <!-- mini文件存储服务 -->
  382. <dependency>
  383. <groupId>io.minio</groupId>
  384. <artifactId>minio</artifactId>
  385. <version>4.0.0</version>
  386. <exclusions>
  387. <exclusion>
  388. <artifactId>guava</artifactId>
  389. <groupId>com.google.guava</groupId>
  390. </exclusion>
  391. <exclusion>
  392. <artifactId>jsr305</artifactId>
  393. <groupId>com.google.code.findbugs</groupId>
  394. </exclusion>
  395. </exclusions>
  396. </dependency>
  397. <dependency>
  398. <groupId>cn.hutool</groupId>
  399. <artifactId>hutool-all</artifactId>
  400. <version>4.5.11</version>
  401. </dependency>
  402. <!-- 阿里云短信 -->
  403. <dependency>
  404. <groupId>com.aliyun</groupId>
  405. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  406. <version>${aliyun-java-sdk-dysmsapi.version}</version>
  407. </dependency>
  408. <dependency>
  409. <groupId>com.aliyun</groupId>
  410. <artifactId>aliyun-java-sdk-core</artifactId>
  411. <version>${aliyun-java-sdk-core.version}</version>
  412. </dependency>
  413. <dependency>
  414. <groupId>com.aliyun.oss</groupId>
  415. <artifactId>aliyun-sdk-oss</artifactId>
  416. <version>2.8.3</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>com.aliyun</groupId>
  420. <artifactId>aliyun-java-sdk-mts</artifactId>
  421. <version>2.5.2</version>
  422. </dependency>
  423. <dependency>
  424. <groupId>org.bytedeco</groupId>
  425. <artifactId>javacv</artifactId>
  426. <version>1.4.2</version>
  427. </dependency>
  428. <dependency>
  429. <groupId>org.bytedeco</groupId>
  430. <artifactId>javacv-platform</artifactId>
  431. <version>1.4.2</version>
  432. </dependency>
  433. <!--<dependency>
  434. <groupId>com.qcloud</groupId>
  435. <artifactId>cos_api</artifactId>
  436. <version>5.6.24</version>
  437. </dependency>-->
  438. <dependency>
  439. <groupId>com.tencentcloudapi</groupId>
  440. <artifactId>tencentcloud-sdk-java</artifactId>
  441. <version>3.1.62</version><!-- 注:这里只是示例版本号,请获取并替换为 最新的版本号 -->
  442. </dependency>
  443. </dependencies>
  444. <dependencyManagement>
  445. <dependencies>
  446. <!-- jeecg-boot-base-common -->
  447. <dependency>
  448. <groupId>org.jeecgframework.boot</groupId>
  449. <artifactId>jeecg-boot-base-common</artifactId>
  450. <version>${jeecgboot.common.version}</version>
  451. </dependency>
  452. </dependencies>
  453. </dependencyManagement>
  454. <build>
  455. <plugins>
  456. <!--<plugin>
  457. <groupId>org.springframework.boot</groupId>
  458. <artifactId>spring-boot-maven-plugin</artifactId>
  459. </plugin>
  460. 指定JDK编译版本 -->
  461. <plugin> <!--groovy的编译--> <!--https://github.com/groovy/GMavenPlus/wiki/Examples-->
  462. <groupId>org.codehaus.gmavenplus</groupId>
  463. <artifactId>gmavenplus-plugin</artifactId>
  464. <version>1.6.1</version>
  465. <executions>
  466. <execution>
  467. <goals>
  468. <goal>addSources</goal>
  469. <goal>addTestSources</goal>
  470. <goal>generateStubs</goal>
  471. <goal>generateTestStubs</goal>
  472. <goal>compile</goal>
  473. <goal>compileTests</goal>
  474. <goal>removeStubs</goal>
  475. <goal>removeTestStubs</goal>
  476. </goals>
  477. </execution>
  478. </executions>
  479. </plugin>
  480. <plugin>
  481. <groupId>org.apache.maven.plugins</groupId>
  482. <artifactId>maven-compiler-plugin</artifactId>
  483. <configuration>
  484. <source>1.8</source>
  485. <target>1.8</target>
  486. <encoding>UTF-8</encoding>
  487. </configuration>
  488. </plugin>
  489. <!-- 打包跳过测试 -->
  490. <plugin>
  491. <groupId>org.apache.maven.plugins</groupId>
  492. <artifactId>maven-surefire-plugin</artifactId>
  493. <configuration>
  494. <skipTests>true</skipTests>
  495. </configuration>
  496. </plugin>
  497. <!-- &lt;!&ndash; 避免font文件的二进制文件格式压缩破坏 &ndash;&gt;-->
  498. <!-- <plugin>-->
  499. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  500. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  501. <!-- <configuration>-->
  502. <!-- <nonFilteredFileExtensions>-->
  503. <!-- <nonFilteredFileExtension>woff</nonFilteredFileExtension>-->
  504. <!-- <nonFilteredFileExtension>woff2</nonFilteredFileExtension>-->
  505. <!-- <nonFilteredFileExtension>eot</nonFilteredFileExtension>-->
  506. <!-- <nonFilteredFileExtension>ttf</nonFilteredFileExtension>-->
  507. <!-- <nonFilteredFileExtension>svg</nonFilteredFileExtension>-->
  508. <!-- </nonFilteredFileExtensions>-->
  509. <!-- </configuration>-->
  510. <!-- </plugin>-->
  511. </plugins>
  512. <resources>
  513. <resource>
  514. <directory>src/main/resources</directory>
  515. <filtering>true</filtering>
  516. </resource>
  517. <resource>
  518. <directory>src/main/java</directory>
  519. <includes>
  520. <include>**/*.xml</include>
  521. <include>**/*.json</include>
  522. <include>**/*.ftl</include>
  523. </includes>
  524. </resource>
  525. </resources>
  526. </build>
  527. </project>