pom.xml 16 KB

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