pom.xml 16 KB

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