pom.xml 16 KB

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