pom.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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.1.7.RELEASE</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>6.0</version>
  19. <packaging>pom</packaging>
  20. <name>jeeplus-vue</name>
  21. <modules>
  22. <!--启动模块-->
  23. <module>jeeplus-web</module>
  24. <!--平台核心模块-->
  25. <module>jeeplus-platform/jeeplus-core</module>
  26. <module>jeeplus-platform/jeeplus-admin</module>
  27. <!--添加插件模块-->
  28. <module>jeeplus-plugins/jeeplus-flowable</module>
  29. <module>jeeplus-plugins/jeeplus-monitor</module>
  30. <module>jeeplus-plugins/jeeplus-tools</module>
  31. <module>jeeplus-plugins/jeeplus-quartz</module>
  32. <module>jeeplus-plugins/jeeplus-form</module>
  33. <module>jeeplus-plugins/jeeplus-datasource</module>
  34. <module>jeeplus-plugins/jeeplus-oa</module>
  35. <module>jeeplus-plugins/jeeplus-calendar</module>
  36. <module>jeeplus-plugins/jeeplus-mail</module>
  37. <module>jeeplus-plugins/jeeplus-ureport</module>
  38. <!--添加业务模块-->
  39. <module>jeeplus-module/jeeplus-test</module>
  40. <module>jeeplus-module/jeeplus-car</module>
  41. </modules>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-aop</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-cache</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-redis</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-freemarker</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-jdbc</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. <artifactId>mybatis-spring-boot-starter</artifactId>
  66. <version>1.3.2</version>
  67. </dependency>
  68. <!--<dependency>-->
  69. <!--<groupId>org.springframework.boot</groupId>-->
  70. <!--<artifactId>spring-boot-configuration-processor</artifactId>-->
  71. <!--<optional>true</optional>-->
  72. <!--</dependency>-->
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-validation</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-web</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-websocket</artifactId>
  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-devtools</artifactId>
  92. <optional>true</optional>
  93. </dependency>
  94. <!--<dependency>-->
  95. <!--<groupId>org.springframework.boot</groupId>-->
  96. <!--<artifactId>spring-boot-devtools</artifactId>-->
  97. <!--<optional>true</optional>-->
  98. <!--</dependency>-->
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-tomcat</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.microsoft.sqlserver</groupId>
  105. <artifactId>mssql-jdbc</artifactId>
  106. <scope>runtime</scope>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/net.sourceforge.jtds/jtds -->
  109. <dependency>
  110. <groupId>net.sourceforge.jtds</groupId>
  111. <artifactId>jtds</artifactId>
  112. <version>1.3.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>mysql</groupId>
  116. <artifactId>mysql-connector-java</artifactId>
  117. <scope>runtime</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.postgresql</groupId>
  121. <artifactId>postgresql</artifactId>
  122. <scope>runtime</scope>
  123. </dependency>
  124. <!--<dependency>-->
  125. <!--<groupId>com.alibaba</groupId>-->
  126. <!--<artifactId>druid</artifactId>-->
  127. <!--<version>1.0.11</version>-->
  128. <!--</dependency>-->
  129. <dependency>
  130. <groupId>com.alibaba</groupId>
  131. <artifactId>druid-spring-boot-starter</artifactId>
  132. <version>1.1.14</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>cglib</groupId>
  136. <artifactId>cglib</artifactId>
  137. <version>3.1</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>javax.servlet.jsp</groupId>
  141. <artifactId>jsp-api</artifactId>
  142. <version>2.1</version>
  143. <scope>provided</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-dbcp</groupId>
  147. <artifactId>commons-dbcp</artifactId>
  148. <version>1.4</version>
  149. </dependency>
  150. <!-- SECURITY begin -->
  151. <dependency>
  152. <groupId>com.auth0</groupId>
  153. <artifactId>java-jwt</artifactId>
  154. <version>3.4.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.shiro</groupId>
  158. <artifactId>shiro-core</artifactId>
  159. <version>1.4.1</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.shiro</groupId>
  163. <artifactId>shiro-spring</artifactId>
  164. <version>1.4.1</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.shiro</groupId>
  168. <artifactId>shiro-cas</artifactId>
  169. <version>1.4.0</version>
  170. <exclusions>
  171. <exclusion>
  172. <groupId>commons-logging</groupId>
  173. <artifactId>commons-logging</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.shiro</groupId>
  179. <artifactId>shiro-web</artifactId>
  180. <version>1.4.1</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.shiro</groupId>
  184. <artifactId>shiro-ehcache</artifactId>
  185. <version>1.4.1</version>
  186. </dependency>
  187. <!-- SECURITY end -->
  188. <!-- quartz -->
  189. <dependency>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-starter-quartz</artifactId>
  192. </dependency>
  193. <!-- GENERAL UTILS begin -->
  194. <dependency>
  195. <groupId>commons-io</groupId>
  196. <artifactId>commons-io</artifactId>
  197. <version>2.4</version>
  198. </dependency>
  199. <!-- jackson json -->
  200. <dependency>
  201. <groupId>com.fasterxml.jackson.module</groupId>
  202. <artifactId>jackson-module-jaxb-annotations</artifactId>
  203. <version>2.9.9</version>
  204. </dependency>
  205. <!-- fastjson json-->
  206. <!--<dependency>-->
  207. <!--<groupId>com.alibaba</groupId>-->
  208. <!--<artifactId>fastjson</artifactId>-->
  209. <!--<version>1.2.45</version>-->
  210. <!--</dependency>-->
  211. <!-- pojo copy -->
  212. <dependency>
  213. <groupId>net.sf.dozer</groupId>
  214. <artifactId>dozer</artifactId>
  215. <version>5.5.1</version>
  216. </dependency>
  217. <!-- poi office -->
  218. <dependency>
  219. <groupId>org.apache.poi</groupId>
  220. <artifactId>poi</artifactId>
  221. <version>3.17</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.apache.poi</groupId>
  225. <artifactId>poi-ooxml</artifactId>
  226. <version>3.17</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.poi</groupId>
  230. <artifactId>poi-ooxml-schemas</artifactId>
  231. <version>3.17</version>
  232. </dependency>
  233. <!--httpclient -->
  234. <dependency>
  235. <groupId>org.apache.httpcomponents</groupId>
  236. <artifactId>httpclient</artifactId>
  237. <version>4.5.2</version>
  238. </dependency>
  239. <!-- swagger-springmvc -->
  240. <dependency>
  241. <groupId>io.springfox</groupId>
  242. <artifactId>springfox-swagger2</artifactId>
  243. <version>2.9.2</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>io.springfox</groupId>
  247. <artifactId>springfox-swagger-ui</artifactId>
  248. <version>2.9.2</version>
  249. </dependency>
  250. <!-- swagger-springmvc dependencies -->
  251. <dependency>
  252. <groupId>com.google.guava</groupId>
  253. <artifactId>guava</artifactId>
  254. <version>20.0</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>commons-lang</groupId>
  258. <artifactId>commons-lang</artifactId>
  259. <version>2.6</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.apache.commons</groupId>
  263. <artifactId>commons-lang3</artifactId>
  264. <version>3.5</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>javax.servlet</groupId>
  268. <artifactId>javax.servlet-api</artifactId>
  269. <version>3.1.0</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>net.sf.json-lib</groupId>
  273. <artifactId>json-lib</artifactId>
  274. <version>2.4</version>
  275. <classifier>jdk15</classifier>
  276. <exclusions>
  277. <exclusion>
  278. <groupId>commons-lang</groupId>
  279. <artifactId>commons-lang</artifactId>
  280. </exclusion>
  281. <exclusion>
  282. <groupId>commons-logging</groupId>
  283. <artifactId>commons-logging</artifactId>
  284. </exclusion>
  285. <exclusion>
  286. <groupId>commons-beanutils</groupId>
  287. <artifactId>commons-beanutils</artifactId>
  288. </exclusion>
  289. <exclusion>
  290. <groupId>commons-collections</groupId>
  291. <artifactId>commons-collections</artifactId>
  292. </exclusion>
  293. </exclusions>
  294. </dependency>
  295. <!--hibernate多数据源-->
  296. <!--<dependency>-->
  297. <!--<groupId>org.hibernate</groupId>-->
  298. <!--<artifactId>hibernate-core</artifactId>-->
  299. <!--<version>5.2.12.Final</version>-->
  300. <!--<exclusions>-->
  301. <!--<exclusion>-->
  302. <!--<groupId>com.fasterxml</groupId>-->
  303. <!--<artifactId>classmate</artifactId>-->
  304. <!--</exclusion>-->
  305. <!--<exclusion>-->
  306. <!--<groupId>dom4j</groupId>-->
  307. <!--<artifactId>dom4j</artifactId>-->
  308. <!--</exclusion>-->
  309. <!--</exclusions>-->
  310. <!--</dependency>-->
  311. <!-- jdbc连接池 -->
  312. <dependency>
  313. <groupId>com.mchange</groupId>
  314. <artifactId>c3p0</artifactId>
  315. <version> 0.9.2.1</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>com.google.code.maven-play-plugin.com.mchange</groupId>
  319. <artifactId>c3p0-oracle-thin-extras</artifactId>
  320. <version>0.9.5</version>
  321. </dependency>
  322. <dependency>
  323. <groupId>dom4j</groupId>
  324. <artifactId>dom4j</artifactId>
  325. <version>1.6</version>
  326. <exclusions>
  327. <exclusion>
  328. <groupId>xml-apis</groupId>
  329. <artifactId>xml-apis</artifactId>
  330. </exclusion>
  331. </exclusions>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.hibernate</groupId>
  335. <artifactId>hibernate-ehcache</artifactId>
  336. <version>5.2.12.Final</version>
  337. <exclusions>
  338. <exclusion>
  339. <groupId>org.slf4j</groupId>
  340. <artifactId>slf4j-api</artifactId>
  341. </exclusion>
  342. </exclusions>
  343. </dependency>
  344. <dependency>
  345. <groupId>com.fasterxml.jackson.core</groupId>
  346. <artifactId>jackson-databind</artifactId>
  347. <version>2.9.9</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>com.fasterxml.jackson.datatype</groupId>
  351. <artifactId>jackson-datatype-hibernate5</artifactId>
  352. <version>2.9.9</version>
  353. </dependency>
  354. <!--<dependency>-->
  355. <!--<groupId>p6spy</groupId>-->
  356. <!--<artifactId>p6spy</artifactId>-->
  357. <!--<version>3.8.0</version>-->
  358. <!--</dependency>-->
  359. <!--&lt;!&ndash; Echarts图表依赖包开始 &ndash;&gt;-->
  360. <!--&lt;!&ndash; https://mvnrepository.com/artifact/com.github.abel533/ECharts &ndash;&gt;-->
  361. <!--<dependency>-->
  362. <!--<groupId>com.github.abel533</groupId>-->
  363. <!--<artifactId>ECharts</artifactId>-->
  364. <!--<version>3.0.0.5</version>-->
  365. <!--</dependency>-->
  366. <dependency>
  367. <groupId>com.google.code.gson</groupId>
  368. <artifactId>gson</artifactId>
  369. <version>2.6.2</version>
  370. </dependency>
  371. <!-- Echarts图表依赖包结束 -->
  372. <dependency>
  373. <groupId>org.jeeplus</groupId>
  374. <artifactId>jeeplus-mybatis-dynamic-vue</artifactId>
  375. <version>6.0</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>p6spy</groupId>
  379. <artifactId>p6spy</artifactId>
  380. <version>3.8.0</version>
  381. </dependency>
  382. </dependencies>
  383. <!-- 设定仓库 -->
  384. <repositories>
  385. <repository>
  386. <id>aliyun-repos</id>
  387. <url>https://maven.aliyun.com/repository/public</url>
  388. <releases><enabled>true</enabled></releases>
  389. <snapshots><enabled>false</enabled></snapshots>
  390. </repository>
  391. <repository>
  392. <id>sonatype-repos-s</id>
  393. <name>Sonatype Repository</name>
  394. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  395. <releases><enabled>false</enabled></releases>
  396. <snapshots><enabled>true</enabled></snapshots>
  397. </repository>
  398. </repositories>
  399. <pluginRepositories>
  400. <pluginRepository>
  401. <id>aliyun-repos</id>
  402. <url>https://maven.aliyun.com/repository/public</url>
  403. </pluginRepository>
  404. </pluginRepositories>
  405. <build>
  406. <plugins>
  407. <!-- Compiler 插件, 设定JDK版本 -->
  408. <plugin>
  409. <groupId>org.apache.maven.plugins</groupId>
  410. <artifactId>maven-compiler-plugin</artifactId>
  411. <configuration>
  412. <showWarnings>true</showWarnings>
  413. <encoding>UTF-8</encoding>
  414. </configuration>
  415. </plugin>
  416. <plugin>
  417. <groupId>org.apache.maven.plugins</groupId>
  418. <artifactId>maven-surefire-plugin</artifactId>
  419. <version>2.19.1</version>
  420. <configuration>
  421. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  422. </configuration>
  423. </plugin>
  424. <!-- 打包jar文件时,配置manifest文件,加入lib包的jar依赖 -->
  425. <plugin>
  426. <groupId>org.apache.maven.plugins</groupId>
  427. <artifactId>maven-jar-plugin</artifactId>
  428. <configuration>
  429. <archive>
  430. <addMavenDescriptor>false</addMavenDescriptor>
  431. </archive>
  432. </configuration>
  433. <executions>
  434. <execution>
  435. <configuration>
  436. <archive>
  437. <manifest>
  438. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  439. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  440. <addClasspath>true</addClasspath>
  441. </manifest>
  442. </archive>
  443. </configuration>
  444. </execution>
  445. </executions>
  446. </plugin>
  447. <!-- resource插件 -->
  448. <plugin>
  449. <groupId>org.apache.maven.plugins</groupId>
  450. <artifactId>maven-resources-plugin</artifactId>
  451. </plugin>
  452. <!-- install插件 -->
  453. <plugin>
  454. <groupId>org.apache.maven.plugins</groupId>
  455. <artifactId>maven-install-plugin</artifactId>
  456. </plugin>
  457. <!-- clean插件 -->
  458. <plugin>
  459. <groupId>org.apache.maven.plugins</groupId>
  460. <artifactId>maven-clean-plugin</artifactId>
  461. </plugin>
  462. <!-- ant插件 -->
  463. <plugin>
  464. <groupId>org.apache.maven.plugins</groupId>
  465. <artifactId>maven-antrun-plugin</artifactId>
  466. </plugin>
  467. <!-- dependency插件 -->
  468. <plugin>
  469. <groupId>org.apache.maven.plugins</groupId>
  470. <artifactId>maven-dependency-plugin</artifactId>
  471. </plugin>
  472. </plugins>
  473. <!-- 资源文件配置 -->
  474. <resources>
  475. <resource>
  476. <directory>src/main/webapp</directory>
  477. </resource>
  478. <resource>
  479. <directory>src/main/resources</directory>
  480. </resource>
  481. <resource>
  482. <directory>src/main/java</directory>
  483. <includes>
  484. <include>**/*.xml</include>
  485. <include>**/*.ftl</include>
  486. </includes>
  487. </resource>
  488. </resources>
  489. </build>
  490. </project>