pom.xml 16 KB

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