pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.yihu.ehr</groupId>
  5. <artifactId>app-iot-server</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.0.0</version>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>1.4.0.RELEASE</version>
  12. <relativePath>pom.xml</relativePath>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <!-- 依赖包 -->
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <artifactId>log4j-over-slf4j</artifactId>
  26. <groupId>org.slf4j</groupId>
  27. </exclusion>
  28. <exclusion>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-tomcat</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-tomcat</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>us.codecraft</groupId>
  41. <artifactId>webmagic-core</artifactId>
  42. <version>0.4.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>us.codecraft</groupId>
  46. <artifactId>webmagic-extension</artifactId>
  47. <version>0.4.2</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>de.codecentric</groupId>
  51. <artifactId>spring-boot-admin-starter-client</artifactId>
  52. <version>1.3.3</version>
  53. </dependency>
  54. <!-- 使用intellij作为集成开发环境 -->
  55. <dependency>
  56. <groupId>org.apache.tomcat.embed</groupId>
  57. <artifactId>tomcat-embed-jasper</artifactId>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.servlet</groupId>
  62. <artifactId>jstl</artifactId>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-webmvc</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.security</groupId>
  76. <artifactId>spring-security-web</artifactId>
  77. <version>4.0.0.RELEASE</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.security</groupId>
  81. <artifactId>spring-security-config</artifactId>
  82. <version>4.0.0.RELEASE</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.security</groupId>
  86. <artifactId>spring-security-taglibs</artifactId>
  87. <version>4.0.0.RELEASE</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.tiles</groupId>
  91. <artifactId>tiles-extras</artifactId>
  92. <version>3.0.5</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>com.google.guava</groupId>
  96. <artifactId>guava</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework</groupId>
  102. <artifactId>spring-context</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-swagger2</artifactId>
  107. <version>2.4.0</version>
  108. <exclusions>
  109. <exclusion>
  110. <artifactId>classmate</artifactId>
  111. <groupId>com.fasterxml</groupId>
  112. </exclusion>
  113. </exclusions>
  114. </dependency>
  115. <dependency>
  116. <groupId>io.springfox</groupId>
  117. <artifactId>springfox-swagger-ui</artifactId>
  118. <version>2.4.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.commons</groupId>
  122. <artifactId>commons-collections4</artifactId>
  123. <version>4.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>eu.medsea.mimeutil</groupId>
  127. <artifactId>mime-util</artifactId>
  128. <version>2.1.3</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>net.lingala.zip4j</groupId>
  132. <artifactId>zip4j</artifactId>
  133. <version>1.3.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-fileupload</groupId>
  137. <artifactId>commons-fileupload</artifactId>
  138. <version>1.3</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.commons</groupId>
  142. <artifactId>commons-lang3</artifactId>
  143. <version>3.4</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-httpclient</groupId>
  147. <artifactId>commons-httpclient</artifactId>
  148. <version>3.1</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.httpcomponents</groupId>
  152. <artifactId>httpmime</artifactId>
  153. <version>4.5.1</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.json</groupId>
  157. <artifactId>json</artifactId>
  158. <version>20151123</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>junit</groupId>
  162. <artifactId>junit</artifactId>
  163. <version>4.12</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.yihu.ehr</groupId>
  167. <artifactId>commons-admin-gateway-model</artifactId>
  168. <version>1.1.0</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.yihu.ehr</groupId>
  172. <artifactId>commons-util</artifactId>
  173. <version>1.1.0</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.yihu.ehr</groupId>
  177. <artifactId>commons-rest-model</artifactId>
  178. <version>1.1.0</version>
  179. </dependency>
  180. </dependencies>
  181. <build>
  182. <finalName>app-emergency-server</finalName>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin </artifactId>
  187. </plugin>
  188. <plugin>
  189. <artifactId>maven-compiler-plugin</artifactId>
  190. <configuration>
  191. <source>1.8</source>
  192. <target>1.8</target>
  193. </configuration>
  194. </plugin>
  195. </plugins>
  196. </build>
  197. </project>