pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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/maven-v4_0_0.xsd">
  4. <groupId>com.yihu</groupId>
  5. <artifactId>patient-co-statistics</artifactId>
  6. <version>1.0.0</version>
  7. <modelVersion>4.0.0</modelVersion>
  8. <!--打成war包需要的配置-->
  9. <!--<packaging>war</packaging>-->
  10. <packaging>jar</packaging>
  11. <name>patient-co-statistics</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <spring.version>${version.spring-framework}</spring.version>
  15. <version.commons-bean-utils>1.9.2</version.commons-bean-utils>
  16. <version.commons-codec>1.9</version.commons-codec>
  17. <version.commons-collections>3.2.1</version.commons-collections>
  18. <version.commons-compress>1.9</version.commons-compress>
  19. <version.commons-dbcp2>2.1.1</version.commons-dbcp2>
  20. <version.commons-dbutils>1.6</version.commons-dbutils>
  21. <version.commons-io>2.4</version.commons-io>
  22. <version.commons-lang3>3.2.1</version.commons-lang3>
  23. <version.commons-pool2>2.4.2</version.commons-pool2>
  24. <version.hibernate>4.3.11.Final</version.hibernate>
  25. <version.hibernate-annotations>4.0.5.Final</version.hibernate-annotations>
  26. <version.hibernate-jpa-api>1.0.0.Final</version.hibernate-jpa-api>
  27. <version.http-client>4.5.1</version.http-client>
  28. <version.http-core>4.4.3</version.http-core>
  29. <version.java>1.8</version.java>
  30. <version.jackson>2.6.6</version.jackson>
  31. <version.jedis>2.9.0</version.jedis>
  32. <version.jcl-over-slf4j>1.7.19</version.jcl-over-slf4j>
  33. <version.jul-over-slf4j>1.7.21</version.jul-over-slf4j>
  34. <version.joda-time>2.8.2</version.joda-time>
  35. <version.junit>4.12</version.junit>
  36. <version.log4j2>2.4.1</version.log4j2>
  37. <version.logback>1.1.7</version.logback>
  38. <version.mysql>5.1.38</version.mysql>
  39. <version.quartz>2.2.3</version.quartz>
  40. <version.servlet-api>3.1.0</version.servlet-api>
  41. <version.slf4j>1.7.21</version.slf4j>
  42. <version.spring-boot>1.3.5.RELEASE</version.spring-boot>
  43. <version.spring-framework>4.2.5.RELEASE</version.spring-framework>
  44. <version.spring-session>1.2.0.RELEASE</version.spring-session>
  45. <version.swagger>2.4.0</version.swagger>
  46. <version.swagger-ui>2.4.0</version.swagger-ui>
  47. <version.tomcat-embed>8.0.28</version.tomcat-embed>
  48. </properties>
  49. <dependencies>
  50. <!--Jackson library-->
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.core</groupId>
  53. <artifactId>jackson-annotations</artifactId>
  54. <version>${version.jackson}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.fasterxml.jackson.core</groupId>
  58. <artifactId>jackson-core</artifactId>
  59. <version>${version.jackson}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.fasterxml.jackson.core</groupId>
  63. <artifactId>jackson-databind</artifactId>
  64. <version>${version.jackson}</version>
  65. </dependency>
  66. <!--Apache commons library-->
  67. <dependency>
  68. <groupId>org.apache.httpcomponents</groupId>
  69. <artifactId>httpmime</artifactId>
  70. <version>4.4.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.commons</groupId>
  74. <artifactId>commons-lang3</artifactId>
  75. <version>${version.commons-lang3}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.httpcomponents</groupId>
  79. <artifactId>httpcore</artifactId>
  80. <version>${version.http-core}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.httpcomponents</groupId>
  84. <artifactId>httpclient</artifactId>
  85. <version>${version.http-client}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-beanutils</groupId>
  89. <artifactId>commons-beanutils</artifactId>
  90. <version>${version.commons-bean-utils}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.commons</groupId>
  94. <artifactId>commons-pool2</artifactId>
  95. <version>${version.commons-pool2}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-dbutils</groupId>
  99. <artifactId>commons-dbutils</artifactId>
  100. <version>${version.commons-dbutils}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-dbcp2</artifactId>
  105. <version>${version.commons-dbcp2}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-io</groupId>
  109. <artifactId>commons-io</artifactId>
  110. <version>${version.commons-io}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-collections</groupId>
  114. <artifactId>commons-collections</artifactId>
  115. <version>${version.commons-collections}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.commons</groupId>
  119. <artifactId>commons-compress</artifactId>
  120. <version>${version.commons-compress}</version>
  121. </dependency>
  122. <!--Hibernate framework-->
  123. <dependency>
  124. <groupId>org.hibernate.javax.persistence</groupId>
  125. <artifactId>hibernate-jpa-2.1-api</artifactId>
  126. <version>${version.hibernate-jpa-api}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.hibernate</groupId>
  130. <artifactId>hibernate-core</artifactId>
  131. <version>${version.hibernate}</version>
  132. </dependency>
  133. <!--Miscellaneous-->
  134. <dependency>
  135. <groupId>org.quartz-scheduler</groupId>
  136. <artifactId>quartz</artifactId>
  137. <version>${version.quartz}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.quartz-scheduler</groupId>
  141. <artifactId>quartz-jobs</artifactId>
  142. <version>${version.quartz}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>javax.servlet</groupId>
  146. <artifactId>javax.servlet-api</artifactId>
  147. <version>${version.servlet-api}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.slf4j</groupId>
  151. <artifactId>slf4j-api</artifactId>
  152. <version>${version.slf4j}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>junit</groupId>
  156. <artifactId>junit</artifactId>
  157. <version>${version.junit}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>io.springfox</groupId>
  161. <artifactId>springfox-swagger2</artifactId>
  162. <version>${version.swagger}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>io.springfox</groupId>
  166. <artifactId>springfox-swagger-ui</artifactId>
  167. <version>${version.swagger-ui}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>mysql</groupId>
  171. <artifactId>mysql-connector-java</artifactId>
  172. <version>${version.mysql}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>joda-time</groupId>
  176. <artifactId>joda-time</artifactId>
  177. <version>${version.joda-time}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>redis.clients</groupId>
  181. <artifactId>jedis</artifactId>
  182. <version>${version.jedis}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>commons-codec</groupId>
  186. <artifactId>commons-codec</artifactId>
  187. <version>${version.commons-codec}</version>
  188. </dependency>
  189. <!--Log framework-->
  190. <dependency>
  191. <groupId>org.apache.logging.log4j</groupId>
  192. <artifactId>log4j-api</artifactId>
  193. <version>${version.log4j2}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.logging.log4j</groupId>
  197. <artifactId>log4j-core</artifactId>
  198. <version>${version.log4j2}</version>
  199. </dependency>
  200. <!--Log framework to SLF4J bridge: x-over-slf4j-->
  201. <dependency>
  202. <groupId>org.slf4j</groupId>
  203. <artifactId>jcl-over-slf4j</artifactId>
  204. <version>${version.jcl-over-slf4j}</version>
  205. <exclusions>
  206. <exclusion>
  207. <groupId>org.slf4j</groupId>
  208. <artifactId>slf4j-jdk14</artifactId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.slf4j</groupId>
  214. <artifactId>jul-to-slf4j</artifactId>
  215. <version>${version.jul-over-slf4j}</version>
  216. <exclusions>
  217. <exclusion>
  218. <groupId>org.slf4j</groupId>
  219. <artifactId>slf4j-log4j12</artifactId>
  220. </exclusion>
  221. </exclusions>
  222. </dependency>
  223. <!--SLF4J api-->
  224. <dependency>
  225. <groupId>org.slf4j</groupId>
  226. <artifactId>slf4j-api</artifactId>
  227. <version>${version.slf4j}</version>
  228. </dependency>
  229. <!--The single log BACKEND-->
  230. <dependency>
  231. <groupId>ch.qos.logback</groupId>
  232. <artifactId>logback-classic</artifactId>
  233. <version>${version.logback}</version>
  234. </dependency>
  235. <!--Spring framework family-->
  236. <dependency>
  237. <groupId>org.springframework</groupId>
  238. <artifactId>spring-core</artifactId>
  239. <version>${version.spring-framework}</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.springframework</groupId>
  243. <artifactId>spring-context</artifactId>
  244. <version>${version.spring-framework}</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.springframework</groupId>
  248. <artifactId>spring-aop</artifactId>
  249. <version>${version.spring-framework}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.springframework</groupId>
  253. <artifactId>spring-beans</artifactId>
  254. <version>${version.spring-framework}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.springframework</groupId>
  258. <artifactId>spring-web</artifactId>
  259. <version>${version.spring-framework}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.springframework</groupId>
  263. <artifactId>spring-webmvc</artifactId>
  264. <version>${version.spring-framework}</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.springframework</groupId>
  268. <artifactId>spring-orm</artifactId>
  269. <version>${version.spring-framework}</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>org.springframework</groupId>
  273. <artifactId>spring-context-support</artifactId>
  274. <version>${version.spring-framework}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.springframework</groupId>
  278. <artifactId>spring-jdbc</artifactId>
  279. <version>${version.spring-framework}</version>
  280. </dependency>
  281. <!--Spring session family-->
  282. <dependency>
  283. <groupId>org.springframework.session</groupId>
  284. <artifactId>spring-session</artifactId>
  285. <version>${version.spring-session}</version>
  286. </dependency>
  287. <!--Spring integration family-->
  288. <dependency>
  289. <groupId>org.springframework.integration</groupId>
  290. <artifactId>spring-integration-jmx</artifactId>
  291. <version>${version.spring-framework}</version>
  292. </dependency>
  293. <!--Spring batch family-->
  294. <!--Spring boot family-->
  295. <dependency>
  296. <groupId>org.springframework.boot</groupId>
  297. <artifactId>spring-boot</artifactId>
  298. <version>${version.spring-boot}</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.springframework.boot</groupId>
  302. <artifactId>spring-boot-actuator-docs</artifactId>
  303. <version>${version.spring-boot}</version>
  304. </dependency>
  305. <!--<dependency>-->
  306. <!--<groupId>org.springframework.boot</groupId>-->
  307. <!--<artifactId>spring-boot-devtools</artifactId>-->
  308. <!--<version>${version.spring-boot}</version>-->
  309. <!--</dependency>-->
  310. <dependency>
  311. <groupId>org.springframework.boot</groupId>
  312. <artifactId>spring-boot-starter-actuator</artifactId>
  313. <version>${version.spring-boot}</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>org.springframework.boot</groupId>
  317. <artifactId>spring-boot-actuator</artifactId>
  318. <version>${version.spring-boot}</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.springframework.boot</groupId>
  322. <artifactId>spring-boot-starter-aop</artifactId>
  323. <version>${version.spring-boot}</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.springframework.boot</groupId>
  327. <artifactId>spring-boot-starter-data-jpa</artifactId>
  328. <version>${version.spring-boot}</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.springframework.boot</groupId>
  332. <artifactId>spring-boot-starter-jdbc</artifactId>
  333. <version>${version.spring-boot}</version>
  334. </dependency>
  335. <dependency>
  336. <groupId>org.springframework.boot</groupId>
  337. <artifactId>spring-boot-starter-security</artifactId>
  338. <version>${version.spring-boot}</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>org.springframework.boot</groupId>
  342. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  343. <version>${version.spring-boot}</version>
  344. </dependency>
  345. <dependency>
  346. <groupId>org.springframework.boot</groupId>
  347. <artifactId>spring-boot-starter-test</artifactId>
  348. <version>${version.spring-boot}</version>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.springframework.boot</groupId>
  352. <artifactId>spring-boot-starter-mail</artifactId>
  353. <version>${version.spring-boot}</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>org.springframework.boot</groupId>
  357. <artifactId>spring-boot-starter-web</artifactId>
  358. <version>${version.spring-boot}</version>
  359. </dependency>
  360. <dependency>
  361. <groupId>org.springframework.boot</groupId>
  362. <artifactId>spring-boot-starter-tomcat</artifactId>
  363. <version>${version.spring-boot}</version>
  364. <!--<scope>provided</scope>-->
  365. </dependency>
  366. <dependency>
  367. <groupId>org.json</groupId>
  368. <artifactId>json</artifactId>
  369. <version>20151123</version>
  370. </dependency>
  371. <dependency>
  372. <groupId>org.springframework.data</groupId>
  373. <artifactId>spring-data-redis</artifactId>
  374. <version>1.7.2.RELEASE</version>
  375. </dependency>
  376. <dependency>
  377. <groupId>org.springframework</groupId>
  378. <artifactId>spring-orm</artifactId>
  379. <version>4.1.8.RELEASE</version>
  380. </dependency>
  381. <dependency>
  382. <groupId>net.sf.json-lib</groupId>
  383. <artifactId>json-lib</artifactId>
  384. <version>2.4</version>
  385. </dependency>
  386. </dependencies>
  387. <build>
  388. <plugins>
  389. <!--打成war包需要的配置-->
  390. <!--<plugin>-->
  391. <!--<artifactId>maven-war-plugin</artifactId>-->
  392. <!--<configuration>-->
  393. <!--<failOnMissingWebXml>false</failOnMissingWebXml>-->
  394. <!--</configuration>-->
  395. <!--</plugin>-->
  396. <plugin>
  397. <groupId>org.apache.maven.plugins</groupId>
  398. <artifactId>maven-compiler-plugin</artifactId>
  399. <configuration>
  400. <source>1.8</source>
  401. <target>1.8</target>
  402. </configuration>
  403. <version>3.1</version>
  404. </plugin>
  405. </plugins>
  406. </build>
  407. </project>