pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>1.5.10.RELEASE</version>
  10. </parent>
  11. <groupId>com.yihu.wlyy</groupId>
  12. <artifactId>internet-hospital-entrance</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <properties>
  16. <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
  17. <thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <!-- jstl -->
  25. <dependency>
  26. <groupId>javax.servlet</groupId>
  27. <artifactId>jstl</artifactId>
  28. <!--<scope>compile</scope>-->
  29. </dependency>
  30. <!-- jasper -->
  31. <dependency>
  32. <groupId>org.apache.tomcat.embed</groupId>
  33. <artifactId>tomcat-embed-jasper</artifactId>
  34. <!--<scope>compile</scope>-->
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-tomcat</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.mybatis.spring.boot</groupId>
  43. <artifactId>mybatis-spring-boot-starter</artifactId>
  44. <version>1.1.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.yihu</groupId>
  48. <artifactId>swagger-starter</artifactId>
  49. <version>2.0.0</version>
  50. </dependency>
  51. <!-- mysql 数据库驱动 -->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. <!-- druid 数据库连接池 -->
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>druid</artifactId>
  60. <version>1.0.9</version>
  61. </dependency>
  62. <!-- 添加 junit 环境的 jar 包 -->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. </dependency>
  67. <!-- Ehcache 坐标 -->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-jpa</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.his.hesb</groupId>
  74. <artifactId>mqSdk</artifactId>
  75. <version>1.0</version>
  76. </dependency>
  77. <!-- xml解析为json start -->
  78. <dependency>
  79. <groupId>net.sf.json-lib</groupId>
  80. <artifactId>json-lib</artifactId>
  81. <version>2.3</version>
  82. <classifier>jdk15</classifier>
  83. </dependency>
  84. <dependency>
  85. <groupId>jdom</groupId>
  86. <artifactId>jdom</artifactId>
  87. <version>1.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>xom</groupId>
  91. <artifactId>xom</artifactId>
  92. <version>1.2.5</version>
  93. </dependency>
  94. <!-- xml解析为json end -->
  95. <dependency>
  96. <groupId>org.apache.axis</groupId>
  97. <artifactId>axis</artifactId>
  98. <version>1.4</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>javax.xml.rpc</groupId>
  102. <artifactId>javax.xml.rpc-api</artifactId>
  103. <version>1.1.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>wsdl4j</groupId>
  107. <artifactId>wsdl4j</artifactId>
  108. <version>1.6.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>commons-discovery</groupId>
  112. <artifactId>commons-discovery</artifactId>
  113. <version>0.5</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.assertj</groupId>
  117. <artifactId>assertj-core</artifactId>
  118. <version>2.5.0</version>
  119. </dependency>
  120. <!-- <dependency>
  121. <groupId>soap</groupId>
  122. <artifactId>soap</artifactId>
  123. <version>2.3.1</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.sun.mail</groupId>
  127. <artifactId>javax.mail</artifactId>
  128. <version>1.6.2</version>
  129. </dependency>
  130. -->
  131. <dependency>
  132. <groupId>javax.ws.rs</groupId>
  133. <artifactId>javax.ws.rs-api</artifactId>
  134. <version>2.1</version>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <!--<finalName>svr-internet-hospital-entrance</finalName>-->
  139. <!--<plugins>-->
  140. <!--<plugin>-->
  141. <!--<groupId>org.springframework.boot</groupId>-->
  142. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  143. <!--<configuration>-->
  144. <!--<mainClass>com.yihu.SvrPatientApplication</mainClass>-->
  145. <!--</configuration>-->
  146. <!--</plugin>-->
  147. <!--<plugin>-->
  148. <!--<artifactId>maven-war-plugin</artifactId>-->
  149. <!--<configuration>-->
  150. <!--<failOnMissingWebXml>false</failOnMissingWebXml>-->
  151. <!--<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>-->
  152. <!--</configuration>-->
  153. <!--</plugin>-->
  154. <!--</plugins>-->
  155. <resources>
  156. <resource>
  157. <directory>src</directory>
  158. <!-- 此配置不可缺,否则mybatis的Mapper.xml将会丢失 -->
  159. <includes>
  160. <include>**/*.xml</include>
  161. </includes>
  162. </resource>
  163. <!--指定资源的位置-->
  164. <resource>
  165. <directory>src/main/resources</directory>
  166. <includes>
  167. <include>**/*.yml</include>
  168. <include>**/*.html</include>
  169. <include>**/*.xml</include>
  170. <include>**/*.properties</include>
  171. </includes>
  172. </resource>
  173. </resources>
  174. </build>
  175. </project>