pom.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  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.2.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-shiwan</module>
  21. <module>module-alarm</module>
  22. <module>module-ctop</module>
  23. <module>module-check</module>
  24. <module>module-oa</module>
  25. <module>jeecg-boot-module-system</module>
  26. <module>module-job-bytedance</module>
  27. <module>module-job-kuaishou</module>
  28. </modules>
  29. <distributionManagement>
  30. <repository>
  31. <id>jeecg</id>
  32. <name>jeecg Repository</name>
  33. <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
  34. </repository>
  35. <snapshotRepository>
  36. <id>jeecg-snapshots</id>
  37. <name>jeecg Snapshot Repository</name>
  38. <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
  39. </snapshotRepository>
  40. </distributionManagement>
  41. <repositories>
  42. <!-- <repository>
  43. <id>bintray-americanexpress-maven</id>
  44. <url>https://dl.bintray.com/americanexpress/maven</url>
  45. </repository>-->
  46. <repository>
  47. <id>aliyun</id>
  48. <name>aliyun Repository</name>
  49. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  50. <snapshots>
  51. <enabled>false</enabled>
  52. </snapshots>
  53. </repository>
  54. <repository>
  55. <id>jeecg</id>
  56. <name>jeecg Repository</name>
  57. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  58. <snapshots>
  59. <enabled>false</enabled>
  60. </snapshots>
  61. </repository>
  62. <repository>
  63. <id>maven-3rdparty</id>
  64. <name>maven-3rdparty</name>
  65. <url>https://packages.atlassian.com/maven-3rdparty/</url>
  66. </repository>
  67. </repositories>
  68. <properties>
  69. <jeecgboot.common.version>2.0.2</jeecgboot.common.version>
  70. <java.version>1.8</java.version>
  71. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  72. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  73. <mybatis-plus.version>3.3.2</mybatis-plus.version>
  74. <druid.version>1.1.10</druid.version>
  75. <commons.version>2.6</commons.version>
  76. <aliyun-java-sdk-core.version>3.5.0</aliyun-java-sdk-core.version>
  77. <aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>
  78. </properties>
  79. <dependencies>
  80. <!--集成springmvc框架并实现自动配置 -->
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-web</artifactId>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>ch.qos.logback</groupId>
  87. <artifactId>logback-classic</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-mail</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-test</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-aop</artifactId>
  103. </dependency>
  104. <!-- 第三方登录 -->
  105. <dependency>
  106. <groupId>com.xkcoding.justauth</groupId>
  107. <artifactId>justauth-spring-boot-starter</artifactId>
  108. <version>1.3.2</version>
  109. <exclusions>
  110. <exclusion>
  111. <artifactId>fastjson</artifactId>
  112. <groupId>com.alibaba</groupId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-starter-actuator</artifactId>
  119. </dependency>
  120. <!-- commons -->
  121. <dependency>
  122. <groupId>commons-io</groupId>
  123. <artifactId>commons-io</artifactId>
  124. <version>${commons.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-lang</groupId>
  128. <artifactId>commons-lang</artifactId>
  129. <version>${commons.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>net.sourceforge.javacsv</groupId>
  133. <artifactId>javacsv</artifactId>
  134. <version>2.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.google.guava</groupId>
  138. <artifactId>guava</artifactId>
  139. <version>26.0-jre</version>
  140. </dependency>
  141. <!-- freemarker -->
  142. <dependency>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-starter-freemarker</artifactId>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.alibaba</groupId>
  148. <artifactId>easyexcel</artifactId>
  149. <version>1.1.2-beat1</version>
  150. </dependency>
  151. <!-- Lombok -->
  152. <dependency>
  153. <groupId>org.projectlombok</groupId>
  154. <artifactId>lombok</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.bstek.ureport</groupId>
  158. <artifactId>ureport2-console</artifactId>
  159. <version>2.2.9</version>
  160. </dependency>
  161. <!-- mybatis-plus -->
  162. <dependency>
  163. <groupId>com.baomidou</groupId>
  164. <artifactId>mybatis-plus-boot-starter</artifactId>
  165. <version>${mybatis-plus.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.baomidou</groupId>
  169. <artifactId>mybatis-plus-extension</artifactId>
  170. <version>${mybatis-plus.version}</version>
  171. </dependency>
  172. <!-- druid -->
  173. <dependency>
  174. <groupId>com.alibaba</groupId>
  175. <artifactId>druid-spring-boot-starter</artifactId>
  176. <version>${druid.version}</version>
  177. </dependency>
  178. <!-- 动态数据源 -->
  179. <dependency>
  180. <groupId>com.baomidou</groupId>
  181. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  182. <version>2.5.4</version>
  183. </dependency>
  184. <!-- json -->
  185. <dependency>
  186. <groupId>com.alibaba</groupId>
  187. <artifactId>fastjson</artifactId>
  188. <version>1.2.83</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.github.pagehelper</groupId>
  192. <artifactId>pagehelper-spring-boot-starter</artifactId>
  193. <!-- 特别注意版本问题 -->
  194. <version>1.2.3</version>
  195. </dependency>
  196. <!--mysql-->
  197. <dependency>
  198. <groupId>mysql</groupId>
  199. <artifactId>mysql-connector-java</artifactId>
  200. <version>5.1.47</version>
  201. <scope>runtime</scope>
  202. </dependency>
  203. <!-- Quartz定时任务 -->
  204. <dependency>
  205. <groupId>org.springframework.boot</groupId>
  206. <artifactId>spring-boot-starter-quartz</artifactId>
  207. </dependency>
  208. <!--JWT-->
  209. <dependency>
  210. <groupId>com.auth0</groupId>
  211. <artifactId>java-jwt</artifactId>
  212. <version>3.7.0</version>
  213. </dependency>
  214. <!--shiro-->
  215. <dependency>
  216. <groupId>org.apache.shiro</groupId>
  217. <artifactId>shiro-spring-boot-starter</artifactId>
  218. <version>1.4.0</version>
  219. </dependency>
  220. <!-- Swagger API文档 -->
  221. <dependency>
  222. <groupId>io.springfox</groupId>
  223. <artifactId>springfox-swagger2</artifactId>
  224. <version>2.9.2</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>io.springfox</groupId>
  228. <artifactId>springfox-swagger-ui</artifactId>
  229. <version>2.9.2</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>com.github.xiaoymin</groupId>
  233. <artifactId>swagger-bootstrap-ui</artifactId>
  234. <version>1.9.3</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>io.springfox</groupId>
  238. <artifactId>springfox-bean-validators</artifactId>
  239. <version>2.9.2</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.springframework.boot</groupId>
  243. <artifactId>spring-boot-devtools</artifactId>
  244. <scope>runtime</scope>
  245. <optional>true</optional>
  246. </dependency>
  247. <!-- Redis -->
  248. <dependency>
  249. <groupId>org.springframework.boot</groupId>
  250. <artifactId>spring-boot-starter-data-redis</artifactId>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.commons</groupId>
  254. <artifactId>commons-pool2</artifactId>
  255. </dependency>
  256. <!-- 代码生成器 -->
  257. <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=344850 -->
  258. <dependency>
  259. <groupId>org.jeecgframework.boot</groupId>
  260. <artifactId>codegenerate</artifactId>
  261. <version>1.2.0</version>
  262. </dependency>
  263. <!-- AutoPoi Excel工具类-->
  264. <dependency>
  265. <groupId>org.jeecgframework</groupId>
  266. <artifactId>autopoi-web</artifactId>
  267. <version>1.1.1</version>
  268. <exclusions>
  269. <exclusion>
  270. <groupId>commons-codec</groupId>
  271. <artifactId>commons-codec</artifactId>
  272. </exclusion>
  273. </exclusions>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.apache.httpcomponents</groupId>
  277. <artifactId>httpclient</artifactId>
  278. <version>4.5.9</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>javax.persistence</groupId>
  282. <artifactId>javax.persistence-api</artifactId>
  283. <version>2.2</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.springframework.boot</groupId>
  287. <artifactId>spring-boot-starter-data-jpa</artifactId>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.apache.httpcomponents</groupId>
  291. <artifactId>httpcore</artifactId>
  292. <version>4.4</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>com.squareup.retrofit2</groupId>
  296. <artifactId>retrofit</artifactId>
  297. <version>2.6.0</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.apache.pdfbox</groupId>
  301. <artifactId>fontbox</artifactId>
  302. <version>2.0.15</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.seleniumhq.selenium</groupId>
  306. <artifactId>selenium-java</artifactId>
  307. <version>3.141.59</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.seleniumhq.selenium</groupId>
  311. <artifactId>selenium-firefox-driver</artifactId>
  312. <version>3.141.59</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>org.json</groupId>
  316. <artifactId>json</artifactId>
  317. <version>LATEST</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.github.binarywang</groupId>
  321. <artifactId>weixin-java-cp</artifactId>
  322. <version>3.6.0</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>net.sourceforge.htmlunit</groupId>
  326. <artifactId>htmlunit</artifactId>
  327. <version>2.36.0</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>io.appium</groupId>
  331. <artifactId>java-client</artifactId>
  332. <version>7.2.0</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>commons-codec</groupId>
  336. <artifactId>commons-codec</artifactId>
  337. <version>1.11</version>
  338. </dependency>
  339. <!-- mini文件存储服务 -->
  340. <dependency>
  341. <groupId>io.minio</groupId>
  342. <artifactId>minio</artifactId>
  343. <version>4.0.0</version>
  344. <exclusions>
  345. <exclusion>
  346. <artifactId>guava</artifactId>
  347. <groupId>com.google.guava</groupId>
  348. </exclusion>
  349. <exclusion>
  350. <artifactId>jsr305</artifactId>
  351. <groupId>com.google.code.findbugs</groupId>
  352. </exclusion>
  353. </exclusions>
  354. </dependency>
  355. <dependency>
  356. <groupId>cn.hutool</groupId>
  357. <artifactId>hutool-all</artifactId>
  358. <version>4.5.11</version>
  359. </dependency>
  360. <!-- 阿里云短信 -->
  361. <dependency>
  362. <groupId>com.aliyun</groupId>
  363. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  364. <version>${aliyun-java-sdk-dysmsapi.version}</version>
  365. </dependency>
  366. <dependency>
  367. <groupId>com.aliyun</groupId>
  368. <artifactId>aliyun-java-sdk-core</artifactId>
  369. <version>${aliyun-java-sdk-core.version}</version>
  370. </dependency>
  371. <dependency>
  372. <groupId>com.aliyun.oss</groupId>
  373. <artifactId>aliyun-sdk-oss</artifactId>
  374. <version>2.8.3</version>
  375. </dependency>
  376. <dependency>
  377. <groupId>com.aliyun</groupId>
  378. <artifactId>aliyun-java-sdk-mts</artifactId>
  379. <version>2.5.2</version>
  380. </dependency>
  381. <dependency>
  382. <groupId>org.bytedeco</groupId>
  383. <artifactId>javacv</artifactId>
  384. <version>1.4.2</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>org.bytedeco</groupId>
  388. <artifactId>javacv-platform</artifactId>
  389. <version>1.4.2</version>
  390. </dependency>
  391. <!--<dependency>
  392. <groupId>com.qcloud</groupId>
  393. <artifactId>cos_api</artifactId>
  394. <version>5.6.24</version>
  395. </dependency>-->
  396. <dependency>
  397. <groupId>com.tencentcloudapi</groupId>
  398. <artifactId>tencentcloud-sdk-java</artifactId>
  399. <version>3.1.62</version><!-- 注:这里只是示例版本号,请获取并替换为 最新的版本号 -->
  400. </dependency>
  401. </dependencies>
  402. <dependencyManagement>
  403. <dependencies>
  404. <!-- jeecg-boot-base-common -->
  405. <dependency>
  406. <groupId>org.jeecgframework.boot</groupId>
  407. <artifactId>jeecg-boot-base-common</artifactId>
  408. <version>${jeecgboot.common.version}</version>
  409. </dependency>
  410. </dependencies>
  411. </dependencyManagement>
  412. <build>
  413. <plugins>
  414. <!--<plugin>
  415. <groupId>org.springframework.boot</groupId>
  416. <artifactId>spring-boot-maven-plugin</artifactId>
  417. </plugin>
  418. 指定JDK编译版本 -->
  419. <plugin> <!--groovy的编译--> <!--https://github.com/groovy/GMavenPlus/wiki/Examples-->
  420. <groupId>org.codehaus.gmavenplus</groupId>
  421. <artifactId>gmavenplus-plugin</artifactId>
  422. <version>1.6.1</version>
  423. <executions>
  424. <execution>
  425. <goals>
  426. <goal>addSources</goal>
  427. <goal>addTestSources</goal>
  428. <goal>generateStubs</goal>
  429. <goal>generateTestStubs</goal>
  430. <goal>compile</goal>
  431. <goal>compileTests</goal>
  432. <goal>removeStubs</goal>
  433. <goal>removeTestStubs</goal>
  434. </goals>
  435. </execution>
  436. </executions>
  437. </plugin>
  438. <plugin>
  439. <groupId>org.apache.maven.plugins</groupId>
  440. <artifactId>maven-compiler-plugin</artifactId>
  441. <configuration>
  442. <source>1.8</source>
  443. <target>1.8</target>
  444. <encoding>UTF-8</encoding>
  445. </configuration>
  446. </plugin>
  447. <!-- 打包跳过测试 -->
  448. <plugin>
  449. <groupId>org.apache.maven.plugins</groupId>
  450. <artifactId>maven-surefire-plugin</artifactId>
  451. <configuration>
  452. <skipTests>true</skipTests>
  453. </configuration>
  454. </plugin>
  455. </plugins>
  456. <resources>
  457. <resource>
  458. <directory>src/main/resources</directory>
  459. <filtering>true</filtering>
  460. </resource>
  461. <resource>
  462. <directory>src/main/java</directory>
  463. <includes>
  464. <include>**/*.xml</include>
  465. <include>**/*.json</include>
  466. <include>**/*.ftl</include>
  467. </includes>
  468. </resource>
  469. </resources>
  470. </build>
  471. </project>