pom.xml 15 KB

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