pom.xml 15 KB

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