pom.xml 16 KB

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