pom.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.5.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <groupId>org.jeeplus</groupId>
  17. <artifactId>jeeplus</artifactId>
  18. <version>9.0</version>
  19. <packaging>pom</packaging>
  20. <name>jeeplus-vue</name>
  21. <modules>
  22. <!--启动模块-->
  23. <module>jeeplus-web</module>
  24. <!--平台核心模块-->
  25. <module>jeeplus-platform</module>
  26. <!--添加插件模块-->
  27. <module>jeeplus-plugins</module>
  28. <!--添加业务模块-->
  29. <module>jeeplus-module</module>
  30. </modules>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-aop</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-cache</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-redis</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-freemarker</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-jdbc</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-security</artifactId>
  55. </dependency>
  56. <!-- security对cas支持 -->
  57. <dependency>
  58. <groupId>org.springframework.security</groupId>
  59. <artifactId>spring-security-cas</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.jasig.cas.client</groupId>
  63. <artifactId>cas-client-core</artifactId>
  64. <version>3.6.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mybatis.spring.boot</groupId>
  68. <artifactId>mybatis-spring-boot-starter</artifactId>
  69. <version>2.1.3</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.baomidou</groupId>
  73. <artifactId>mybatis-plus-boot-starter</artifactId>
  74. <version>3.4.2</version>
  75. </dependency>
  76. <!--<dependency>-->
  77. <!--<groupId>org.springframework.boot</groupId>-->
  78. <!--<artifactId>spring-boot-configuration-processor</artifactId>-->
  79. <!--<optional>true</optional>-->
  80. <!--</dependency>-->
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-validation</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-web</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-websocket</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-mail</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.mapstruct</groupId>
  99. <artifactId>mapstruct</artifactId>
  100. <version>1.4.2.Final</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.mapstruct</groupId>
  104. <artifactId>mapstruct-processor</artifactId>
  105. <version>1.4.2.Final</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <!--<dependency>-->
  109. <!--<groupId>org.springframework.boot</groupId>-->
  110. <!--<artifactId>spring-boot-devtools</artifactId>-->
  111. <!--<optional>true</optional>-->
  112. <!--</dependency>-->
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-tomcat</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.microsoft.sqlserver</groupId>
  119. <artifactId>mssql-jdbc</artifactId>
  120. <scope>runtime</scope>
  121. </dependency>
  122. <!-- https://mvnrepository.com/artifact/net.sourceforge.jtds/jtds -->
  123. <dependency>
  124. <groupId>net.sourceforge.jtds</groupId>
  125. <artifactId>jtds</artifactId>
  126. <version>1.3.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>mysql</groupId>
  130. <artifactId>mysql-connector-java</artifactId>
  131. <scope>runtime</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.postgresql</groupId>
  135. <artifactId>postgresql</artifactId>
  136. <scope>runtime</scope>
  137. </dependency>
  138. <!--<dependency>-->
  139. <!--<groupId>com.alibaba</groupId>-->
  140. <!--<artifactId>druid</artifactId>-->
  141. <!--<version>1.0.11</version>-->
  142. <!--</dependency>-->
  143. <dependency>
  144. <groupId>com.alibaba</groupId>
  145. <artifactId>druid-spring-boot-starter</artifactId>
  146. <version>1.2.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>cglib</groupId>
  150. <artifactId>cglib</artifactId>
  151. <version>3.2.7</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>javax.servlet.jsp</groupId>
  155. <artifactId>jsp-api</artifactId>
  156. <version>2.1</version>
  157. <scope>provided</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>commons-dbcp</groupId>
  161. <artifactId>commons-dbcp</artifactId>
  162. <version>1.4</version>
  163. </dependency>
  164. <!-- SECURITY begin -->
  165. <dependency>
  166. <groupId>com.auth0</groupId>
  167. <artifactId>java-jwt</artifactId>
  168. <version>3.4.0</version>
  169. </dependency>
  170. <!-- quartz -->
  171. <dependency>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-starter-quartz</artifactId>
  174. </dependency>
  175. <!-- GENERAL UTILS begin -->
  176. <dependency>
  177. <groupId>commons-io</groupId>
  178. <artifactId>commons-io</artifactId>
  179. <version>2.8.0</version>
  180. </dependency>
  181. <!-- jackson json -->
  182. <dependency>
  183. <groupId>com.fasterxml.jackson.module</groupId>
  184. <artifactId>jackson-module-jaxb-annotations</artifactId>
  185. <version>2.11.3</version>
  186. </dependency>
  187. <!-- fastjson json-->
  188. <!--<dependency>-->
  189. <!--<groupId>com.alibaba</groupId>-->
  190. <!--<artifactId>fastjson</artifactId>-->
  191. <!--<version>1.2.45</version>-->
  192. <!--</dependency>-->
  193. <dependency>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>cn.hutool</groupId>
  199. <artifactId>hutool-all</artifactId>
  200. <version>5.3.5</version>
  201. </dependency>
  202. <!-- pojo copy -->
  203. <dependency>
  204. <groupId>net.sf.dozer</groupId>
  205. <artifactId>dozer</artifactId>
  206. <version>5.5.1</version>
  207. </dependency>
  208. <!-- poi office -->
  209. <dependency>
  210. <groupId>cn.afterturn</groupId>
  211. <artifactId>easypoi-spring-boot-starter</artifactId>
  212. <version>4.3.0</version>
  213. </dependency>
  214. <!--<dependency>-->
  215. <!--<groupId>org.apache.poi</groupId>-->
  216. <!--<artifactId>poi</artifactId>-->
  217. <!--<version>3.17</version>-->
  218. <!--</dependency>-->
  219. <!--<dependency>-->
  220. <!--<groupId>org.apache.poi</groupId>-->
  221. <!--<artifactId>poi-ooxml</artifactId>-->
  222. <!--<version>3.17</version>-->
  223. <!--</dependency>-->
  224. <!--<dependency>-->
  225. <!--<groupId>org.apache.poi</groupId>-->
  226. <!--<artifactId>poi-ooxml-schemas</artifactId>-->
  227. <!--<version>3.17</version>-->
  228. <!--</dependency>-->
  229. <!--httpclient -->
  230. <dependency>
  231. <groupId>org.apache.httpcomponents</groupId>
  232. <artifactId>httpclient</artifactId>
  233. <version>4.5.13</version>
  234. </dependency>
  235. <!-- swagger-springmvc -->
  236. <dependency>
  237. <groupId>io.springfox</groupId>
  238. <artifactId>springfox-swagger2</artifactId>
  239. <version>2.9.2</version>
  240. <exclusions>
  241. <exclusion>
  242. <artifactId>swagger-annotations</artifactId>
  243. <groupId>io.swagger</groupId>
  244. </exclusion>
  245. <exclusion>
  246. <artifactId>swagger-models</artifactId>
  247. <groupId>io.swagger</groupId>
  248. </exclusion>
  249. <exclusion>
  250. <artifactId>guava</artifactId>
  251. <groupId>com.google.guava</groupId>
  252. </exclusion>
  253. </exclusions>
  254. </dependency>
  255. <dependency>
  256. <groupId>io.springfox</groupId>
  257. <artifactId>springfox-swagger-ui</artifactId>
  258. <version>2.9.2</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.github.xiaoymin</groupId>
  262. <artifactId>swagger-bootstrap-ui</artifactId>
  263. <version>1.9.3</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>io.springfox</groupId>
  267. <artifactId>springfox-bean-validators</artifactId>
  268. <version>2.9.2</version>
  269. <exclusions>
  270. <exclusion>
  271. <artifactId>guava</artifactId>
  272. <groupId>com.google.guava</groupId>
  273. </exclusion>
  274. </exclusions>
  275. </dependency>
  276. <dependency>
  277. <groupId>io.swagger</groupId>
  278. <artifactId>swagger-annotations</artifactId>
  279. <version>1.6.2</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>io.swagger</groupId>
  283. <artifactId>swagger-models</artifactId>
  284. <version>1.6.2</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>com.google.guava</groupId>
  288. <artifactId>guava</artifactId>
  289. <version>29.0-jre</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>commons-lang</groupId>
  293. <artifactId>commons-lang</artifactId>
  294. <version>2.6</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.apache.commons</groupId>
  298. <artifactId>commons-lang3</artifactId>
  299. <version>3.10</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>javax.servlet</groupId>
  303. <artifactId>javax.servlet-api</artifactId>
  304. <version>3.1.0</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>net.sf.json-lib</groupId>
  308. <artifactId>json-lib</artifactId>
  309. <version>2.4</version>
  310. <classifier>jdk15</classifier>
  311. <exclusions>
  312. <exclusion>
  313. <groupId>commons-lang</groupId>
  314. <artifactId>commons-lang</artifactId>
  315. </exclusion>
  316. <exclusion>
  317. <groupId>commons-logging</groupId>
  318. <artifactId>commons-logging</artifactId>
  319. </exclusion>
  320. <exclusion>
  321. <groupId>commons-beanutils</groupId>
  322. <artifactId>commons-beanutils</artifactId>
  323. </exclusion>
  324. <exclusion>
  325. <groupId>commons-collections</groupId>
  326. <artifactId>commons-collections</artifactId>
  327. </exclusion>
  328. </exclusions>
  329. </dependency>
  330. <!--hibernate多数据源-->
  331. <!--<dependency>-->
  332. <!--<groupId>org.hibernate</groupId>-->
  333. <!--<artifactId>hibernate-core</artifactId>-->
  334. <!--<version>5.2.12.Final</version>-->
  335. <!--<exclusions>-->
  336. <!--<exclusion>-->
  337. <!--<groupId>com.fasterxml</groupId>-->
  338. <!--<artifactId>classmate</artifactId>-->
  339. <!--</exclusion>-->
  340. <!--<exclusion>-->
  341. <!--<groupId>dom4j</groupId>-->
  342. <!--<artifactId>dom4j</artifactId>-->
  343. <!--</exclusion>-->
  344. <!--</exclusions>-->
  345. <!--</dependency>-->
  346. <!-- jdbc连接池 -->
  347. <dependency>
  348. <groupId>com.mchange</groupId>
  349. <artifactId>c3p0</artifactId>
  350. <version> 0.9.5.2</version>
  351. </dependency>
  352. <dependency>
  353. <groupId>com.google.code.maven-play-plugin.com.mchange</groupId>
  354. <artifactId>c3p0-oracle-thin-extras</artifactId>
  355. <version>0.9.5</version>
  356. </dependency>
  357. <dependency>
  358. <groupId>dom4j</groupId>
  359. <artifactId>dom4j</artifactId>
  360. <version>1.6</version>
  361. <exclusions>
  362. <exclusion>
  363. <groupId>xml-apis</groupId>
  364. <artifactId>xml-apis</artifactId>
  365. </exclusion>
  366. </exclusions>
  367. </dependency>
  368. <dependency>
  369. <groupId>com.fasterxml.jackson.core</groupId>
  370. <artifactId>jackson-databind</artifactId>
  371. <version>2.11.3</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>com.google.code.gson</groupId>
  375. <artifactId>gson</artifactId>
  376. <version>2.8.6</version>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.jeeplus</groupId>
  380. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  381. <version>3.5.1</version>
  382. </dependency>
  383. <dependency>
  384. <groupId>p6spy</groupId>
  385. <artifactId>p6spy</artifactId>
  386. <version>3.9.1</version>
  387. </dependency>
  388. <!-- Lombok -->
  389. <dependency>
  390. <groupId>org.projectlombok</groupId>
  391. <artifactId>lombok</artifactId>
  392. </dependency>
  393. <dependency>
  394. <groupId>com.aliyun</groupId>
  395. <artifactId>aliyun-java-sdk-core</artifactId>
  396. <version>4.5.16</version>
  397. </dependency>
  398. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-dysmsapi -->
  399. <dependency>
  400. <groupId>com.aliyun</groupId>
  401. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  402. <version>2.1.0</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>com.oracle.database.jdbc</groupId>
  406. <artifactId>ojdbc8</artifactId>
  407. <version>19.8.0.0</version>
  408. </dependency>
  409. <dependency>
  410. <groupId>javax.xml.bind</groupId>
  411. <artifactId>jaxb-api</artifactId>
  412. <version>2.3.1</version>
  413. </dependency>
  414. <dependency>
  415. <groupId>com.sun.xml.bind</groupId>
  416. <artifactId>jaxb-core</artifactId>
  417. <version>2.3.0.1</version>
  418. </dependency>
  419. <dependency>
  420. <groupId>com.sun.xml.bind</groupId>
  421. <artifactId>jaxb-impl</artifactId>
  422. <version>2.3.0.1</version>
  423. </dependency>
  424. <dependency>
  425. <groupId>javax.validation</groupId>
  426. <artifactId>validation-api</artifactId>
  427. </dependency>
  428. <dependency>
  429. <groupId>com.aliyun.oss</groupId>
  430. <artifactId>aliyun-sdk-oss</artifactId>
  431. <version>3.6.0</version>
  432. </dependency>
  433. </dependencies>
  434. <!-- 设定仓库 -->
  435. <repositories>
  436. <repository>
  437. <id>aliyun-repos</id>
  438. <url>https://maven.aliyun.com/repository/public</url>
  439. <releases><enabled>true</enabled></releases>
  440. <snapshots><enabled>false</enabled></snapshots>
  441. </repository>
  442. <repository>
  443. <id>sonatype-repos-s</id>
  444. <name>Sonatype Repository</name>
  445. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  446. <releases><enabled>false</enabled></releases>
  447. <snapshots><enabled>true</enabled></snapshots>
  448. </repository>
  449. </repositories>
  450. <pluginRepositories>
  451. <pluginRepository>
  452. <id>aliyun-repos</id>
  453. <url>https://maven.aliyun.com/repository/public</url>
  454. </pluginRepository>
  455. </pluginRepositories>
  456. <build>
  457. <plugins>
  458. <!-- Compiler 插件, 设定JDK版本 -->
  459. <plugin>
  460. <groupId>org.apache.maven.plugins</groupId>
  461. <artifactId>maven-compiler-plugin</artifactId>
  462. <configuration>
  463. <showWarnings>true</showWarnings>
  464. <source>8</source>
  465. <target>8</target>
  466. <encoding>UTF-8</encoding>
  467. <annotationProcessorPaths>
  468. <path>
  469. <groupId>org.mapstruct</groupId>
  470. <artifactId>mapstruct-processor</artifactId>
  471. <version>1.4.1.Final</version>
  472. </path>
  473. <path>
  474. <groupId>org.projectlombok</groupId>
  475. <artifactId>lombok</artifactId>
  476. <version>1.18.20</version>
  477. </path>
  478. <path>
  479. <groupId>org.projectlombok</groupId>
  480. <artifactId>lombok-mapstruct-binding</artifactId>
  481. <version>0.2.0</version>
  482. </path>
  483. </annotationProcessorPaths>
  484. </configuration>
  485. </plugin>
  486. <plugin>
  487. <groupId>org.apache.maven.plugins</groupId>
  488. <artifactId>maven-surefire-plugin</artifactId>
  489. <version>2.22.2</version>
  490. <configuration>
  491. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  492. </configuration>
  493. </plugin>
  494. <!-- 打包jar文件时,配置manifest文件,加入lib包的jar依赖 -->
  495. <plugin>
  496. <groupId>org.apache.maven.plugins</groupId>
  497. <artifactId>maven-jar-plugin</artifactId>
  498. <configuration>
  499. <archive>
  500. <addMavenDescriptor>false</addMavenDescriptor>
  501. </archive>
  502. </configuration>
  503. <executions>
  504. <execution>
  505. <configuration>
  506. <archive>
  507. <manifest>
  508. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  509. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  510. <addClasspath>true</addClasspath>
  511. </manifest>
  512. </archive>
  513. </configuration>
  514. </execution>
  515. </executions>
  516. </plugin>
  517. <!-- resource插件 -->
  518. <plugin>
  519. <groupId>org.apache.maven.plugins</groupId>
  520. <artifactId>maven-resources-plugin</artifactId>
  521. </plugin>
  522. <!-- install插件 -->
  523. <plugin>
  524. <groupId>org.apache.maven.plugins</groupId>
  525. <artifactId>maven-install-plugin</artifactId>
  526. </plugin>
  527. <!-- clean插件 -->
  528. <plugin>
  529. <groupId>org.apache.maven.plugins</groupId>
  530. <artifactId>maven-clean-plugin</artifactId>
  531. </plugin>
  532. <!-- ant插件 -->
  533. <plugin>
  534. <groupId>org.apache.maven.plugins</groupId>
  535. <artifactId>maven-antrun-plugin</artifactId>
  536. </plugin>
  537. <!-- dependency插件 -->
  538. <plugin>
  539. <groupId>org.apache.maven.plugins</groupId>
  540. <artifactId>maven-dependency-plugin</artifactId>
  541. </plugin>
  542. </plugins>
  543. <!-- 资源文件配置 -->
  544. <resources>
  545. <resource>
  546. <directory>src/main/webapp</directory>
  547. </resource>
  548. <resource>
  549. <directory>src/main/resources</directory>
  550. </resource>
  551. <resource>
  552. <directory>src/main/java</directory>
  553. <includes>
  554. <include>**/*.xml</include>
  555. <include>**/*.ftl</include>
  556. </includes>
  557. </resource>
  558. </resources>
  559. </build>
  560. </project>