pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  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. <module>module-callback</module>
  29. </modules>
  30. <distributionManagement>
  31. <repository>
  32. <id>jeecg</id>
  33. <name>jeecg Repository</name>
  34. <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
  35. </repository>
  36. <snapshotRepository>
  37. <id>jeecg-snapshots</id>
  38. <name>jeecg Snapshot Repository</name>
  39. <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
  40. </snapshotRepository>
  41. </distributionManagement>
  42. <repositories>
  43. <repository>
  44. <id>bintray-americanexpress-maven</id>
  45. <url>https://dl.bintray.com/americanexpress/maven</url>
  46. </repository>
  47. <repository>
  48. <id>aliyun</id>
  49. <name>aliyun Repository</name>
  50. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  51. <snapshots>
  52. <enabled>false</enabled>
  53. </snapshots>
  54. </repository>
  55. <repository>
  56. <id>jeecg</id>
  57. <name>jeecg Repository</name>
  58. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  59. <snapshots>
  60. <enabled>false</enabled>
  61. </snapshots>
  62. </repository>
  63. <repository>
  64. <id>maven-3rdparty</id>
  65. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  66. </repository>
  67. <repository>
  68. <id>ctop</id>
  69. <url>http://39.106.184.70:8081/repository/3rd_part</url>
  70. </repository>
  71. </repositories>
  72. <pluginRepositories>
  73. <pluginRepository>
  74. <snapshots>
  75. <enabled>true</enabled>
  76. </snapshots>
  77. <id>ctop</id>
  78. <url>http://39.106.184.70:8081/repository/3rd_part</url>
  79. </pluginRepository>
  80. </pluginRepositories>
  81. <properties>
  82. <jeecgboot.common.version>2.0.2</jeecgboot.common.version>
  83. <java.version>1.8</java.version>
  84. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  85. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  86. <mybatis-plus.version>3.0.7</mybatis-plus.version>
  87. <druid.version>1.1.10</druid.version>
  88. <commons.version>2.6</commons.version>
  89. <aliyun-java-sdk-core.version>3.5.0</aliyun-java-sdk-core.version>
  90. <aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>
  91. </properties>
  92. <dependencies>
  93. <!--集成springmvc框架并实现自动配置 -->
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-web</artifactId>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>ch.qos.logback</groupId>
  100. <artifactId>logback-classic</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-mail</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-test</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-aop</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-actuator</artifactId>
  120. </dependency>
  121. <!-- commons -->
  122. <dependency>
  123. <groupId>commons-io</groupId>
  124. <artifactId>commons-io</artifactId>
  125. <version>${commons.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-lang</groupId>
  129. <artifactId>commons-lang</artifactId>
  130. <version>${commons.version}</version>
  131. </dependency>
  132. <!-- freemarker -->
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-freemarker</artifactId>
  136. </dependency>
  137. <!-- Lombok -->
  138. <dependency>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. </dependency>
  142. <!-- mybatis-plus -->
  143. <dependency>
  144. <groupId>com.baomidou</groupId>
  145. <artifactId>mybatis-plus-boot-starter</artifactId>
  146. <version>${mybatis-plus.version}</version>
  147. </dependency>
  148. <!-- druid -->
  149. <dependency>
  150. <groupId>com.alibaba</groupId>
  151. <artifactId>druid-spring-boot-starter</artifactId>
  152. <version>${druid.version}</version>
  153. </dependency>
  154. <!-- 动态数据源 -->
  155. <dependency>
  156. <groupId>com.baomidou</groupId>
  157. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  158. <version>2.5.4</version>
  159. </dependency>
  160. <!-- json -->
  161. <dependency>
  162. <groupId>com.alibaba</groupId>
  163. <artifactId>fastjson</artifactId>
  164. <version>1.2.56</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.github.pagehelper</groupId>
  168. <artifactId>pagehelper-spring-boot-starter</artifactId>
  169. <!-- 特别注意版本问题 -->
  170. <version>1.2.3</version>
  171. </dependency>
  172. <!--mysql-->
  173. <dependency>
  174. <groupId>mysql</groupId>
  175. <artifactId>mysql-connector-java</artifactId>
  176. <version>5.1.47</version>
  177. <scope>runtime</scope>
  178. </dependency>
  179. <!--sqlserver-->
  180. <dependency>
  181. <groupId>net.sourceforge.jtds</groupId>
  182. <artifactId>jtds</artifactId>
  183. <version>1.3.1</version>
  184. <scope>runtime</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.microsoft.sqlserver</groupId>
  188. <artifactId>mssql-jdbc</artifactId>
  189. <version>7.2.1.jre8</version>
  190. <scope>runtime</scope>
  191. </dependency>
  192. <!-- Quartz定时任务 -->
  193. <dependency>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-starter-quartz</artifactId>
  196. </dependency>
  197. <!--JWT-->
  198. <dependency>
  199. <groupId>com.auth0</groupId>
  200. <artifactId>java-jwt</artifactId>
  201. <version>3.7.0</version>
  202. </dependency>
  203. <!--shiro-->
  204. <dependency>
  205. <groupId>org.apache.shiro</groupId>
  206. <artifactId>shiro-spring-boot-starter</artifactId>
  207. <version>1.4.0</version>
  208. </dependency>
  209. <!-- Swagger API文档 -->
  210. <dependency>
  211. <groupId>io.springfox</groupId>
  212. <artifactId>springfox-swagger2</artifactId>
  213. <version>2.9.2</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>io.springfox</groupId>
  217. <artifactId>springfox-swagger-ui</artifactId>
  218. <version>2.9.2</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.github.xiaoymin</groupId>
  222. <artifactId>swagger-bootstrap-ui</artifactId>
  223. <version>1.9.3</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>io.springfox</groupId>
  227. <artifactId>springfox-bean-validators</artifactId>
  228. <version>2.9.2</version>
  229. </dependency>
  230. <!-- Redis -->
  231. <dependency>
  232. <groupId>org.springframework.boot</groupId>
  233. <artifactId>spring-boot-starter-data-redis</artifactId>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.commons</groupId>
  237. <artifactId>commons-pool2</artifactId>
  238. </dependency>
  239. <!-- 代码生成器 -->
  240. <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=344850 -->
  241. <dependency>
  242. <groupId>org.jeecgframework.boot</groupId>
  243. <artifactId>codegenerate</artifactId>
  244. <version>1.0.5</version>
  245. </dependency>
  246. <!-- AutoPoi Excel工具类-->
  247. <dependency>
  248. <groupId>org.jeecgframework</groupId>
  249. <artifactId>autopoi-web</artifactId>
  250. <version>1.0.3</version>
  251. <exclusions>
  252. <exclusion>
  253. <groupId>commons-codec</groupId>
  254. <artifactId>commons-codec</artifactId>
  255. </exclusion>
  256. </exclusions>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.apache.httpcomponents</groupId>
  260. <artifactId>httpclient</artifactId>
  261. <version>4.5.9</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.apache.httpcomponents</groupId>
  265. <artifactId>httpcore</artifactId>
  266. <version>4.4</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.squareup.retrofit2</groupId>
  270. <artifactId>retrofit</artifactId>
  271. <version>2.6.0</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.pdfbox</groupId>
  275. <artifactId>fontbox</artifactId>
  276. <version>2.0.15</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.seleniumhq.selenium</groupId>
  280. <artifactId>selenium-java</artifactId>
  281. <version>3.141.59</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.seleniumhq.selenium</groupId>
  285. <artifactId>selenium-firefox-driver</artifactId>
  286. <version>3.141.59</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.json</groupId>
  290. <artifactId>json</artifactId>
  291. <version>LATEST</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>com.google.guava</groupId>
  295. <artifactId>guava</artifactId>
  296. <version>25.0-jre</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.github.binarywang</groupId>
  300. <artifactId>weixin-java-cp</artifactId>
  301. <version>3.6.0</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>us.codecraft</groupId>
  305. <artifactId>webmagic-core</artifactId>
  306. <version>0.7.3</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>us.codecraft</groupId>
  310. <artifactId>webmagic-extension</artifactId>
  311. <version>0.7.3</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>net.sourceforge.htmlunit</groupId>
  315. <artifactId>htmlunit</artifactId>
  316. <version>2.36.0</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>io.appium</groupId>
  320. <artifactId>java-client</artifactId>
  321. <version>7.2.0</version>
  322. </dependency>
  323. <!-- <dependency>-->
  324. <!-- <groupId>io.aexp.nodes.graphql</groupId>-->
  325. <!-- <artifactId>nodes</artifactId>-->
  326. <!-- <version>0.4.0</version>-->
  327. <!-- </dependency>-->
  328. <dependency>
  329. <groupId>commons-codec</groupId>
  330. <artifactId>commons-codec</artifactId>
  331. <version>1.11</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>cn.hutool</groupId>
  335. <artifactId>hutool-all</artifactId>
  336. <version>4.5.11</version>
  337. </dependency>
  338. <!-- 阿里云短信 -->
  339. <dependency>
  340. <groupId>com.aliyun</groupId>
  341. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  342. <version>${aliyun-java-sdk-dysmsapi.version}</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>com.aliyun</groupId>
  346. <artifactId>aliyun-java-sdk-core</artifactId>
  347. <version>${aliyun-java-sdk-core.version}</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>com.aliyun.oss</groupId>
  351. <artifactId>aliyun-sdk-oss</artifactId>
  352. <version>2.8.3</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>com.aliyun</groupId>
  356. <artifactId>aliyun-java-sdk-mts</artifactId>
  357. <version>2.5.2</version>
  358. </dependency>
  359. <dependency>
  360. <groupId>org.bytedeco</groupId>
  361. <artifactId>javacv</artifactId>
  362. <version>1.4.2</version>
  363. </dependency>
  364. <dependency>
  365. <groupId>org.bytedeco</groupId>
  366. <artifactId>javacv-platform</artifactId>
  367. <version>1.4.2</version>
  368. </dependency>
  369. </dependencies>
  370. <dependencyManagement>
  371. <dependencies>
  372. <!-- jeecg-boot-base-common -->
  373. <dependency>
  374. <groupId>org.jeecgframework.boot</groupId>
  375. <artifactId>jeecg-boot-base-common</artifactId>
  376. <version>${jeecgboot.common.version}</version>
  377. </dependency>
  378. </dependencies>
  379. </dependencyManagement>
  380. <build>
  381. <plugins>
  382. <!--<plugin>
  383. <groupId>org.springframework.boot</groupId>
  384. <artifactId>spring-boot-maven-plugin</artifactId>
  385. </plugin>
  386. 指定JDK编译版本 -->
  387. <plugin>
  388. <groupId>org.apache.maven.plugins</groupId>
  389. <artifactId>maven-compiler-plugin</artifactId>
  390. <configuration>
  391. <source>1.8</source>
  392. <target>1.8</target>
  393. <encoding>UTF-8</encoding>
  394. </configuration>
  395. </plugin>
  396. <!-- 打包跳过测试 -->
  397. <plugin>
  398. <groupId>org.apache.maven.plugins</groupId>
  399. <artifactId>maven-surefire-plugin</artifactId>
  400. <configuration>
  401. <skipTests>true</skipTests>
  402. </configuration>
  403. </plugin>
  404. <!-- 避免font文件的二进制文件格式压缩破坏 -->
  405. <plugin>
  406. <groupId>org.apache.maven.plugins</groupId>
  407. <artifactId>maven-resources-plugin</artifactId>
  408. <configuration>
  409. <delimiters>@</delimiters>
  410. <useDefaultDelimiters>false</useDefaultDelimiters>
  411. <nonFilteredFileExtensions>
  412. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  413. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  414. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  415. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  416. <nonFilteredFileExtension>svg</nonFilteredFileExtension>
  417. </nonFilteredFileExtensions>
  418. </configuration>
  419. </plugin>
  420. </plugins>
  421. <resources>
  422. <resource>
  423. <directory>src/main/resources</directory>
  424. <filtering>true</filtering>
  425. </resource>
  426. <resource>
  427. <directory>src/main/java</directory>
  428. <includes>
  429. <include>**/*.xml</include>
  430. <include>**/*.json</include>
  431. <include>**/*.ftl</include>
  432. </includes>
  433. </resource>
  434. </resources>
  435. </build>
  436. </project>