pom.xml 18 KB

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