pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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. <exclusions>
  44. <exclusion>
  45. <artifactId>log4j</artifactId>
  46. <groupId>log4j</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>us.codecraft</groupId>
  52. <artifactId>webmagic-extension</artifactId>
  53. <version>0.4.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>de.codecentric</groupId>
  57. <artifactId>spring-boot-admin-starter-client</artifactId>
  58. <version>1.3.3</version>
  59. </dependency>
  60. <!-- 使用intellij作为集成开发环境 -->
  61. <dependency>
  62. <groupId>org.apache.tomcat.embed</groupId>
  63. <artifactId>tomcat-embed-jasper</artifactId>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.servlet</groupId>
  68. <artifactId>jstl</artifactId>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-webmvc</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.security</groupId>
  82. <artifactId>spring-security-web</artifactId>
  83. <version>4.0.0.RELEASE</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.security</groupId>
  87. <artifactId>spring-security-config</artifactId>
  88. <version>4.0.0.RELEASE</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.security</groupId>
  92. <artifactId>spring-security-taglibs</artifactId>
  93. <version>4.0.0.RELEASE</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.tiles</groupId>
  97. <artifactId>tiles-extras</artifactId>
  98. <version>3.0.5</version>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>com.google.guava</groupId>
  102. <artifactId>guava</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework</groupId>
  108. <artifactId>spring-context</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>io.springfox</groupId>
  112. <artifactId>springfox-swagger2</artifactId>
  113. <version>2.4.0</version>
  114. <exclusions>
  115. <exclusion>
  116. <artifactId>classmate</artifactId>
  117. <groupId>com.fasterxml</groupId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <dependency>
  122. <groupId>io.springfox</groupId>
  123. <artifactId>springfox-swagger-ui</artifactId>
  124. <version>2.4.0</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.commons</groupId>
  128. <artifactId>commons-collections4</artifactId>
  129. <version>4.0</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>eu.medsea.mimeutil</groupId>
  133. <artifactId>mime-util</artifactId>
  134. <version>2.1.3</version>
  135. <exclusions>
  136. <exclusion>
  137. <artifactId>slf4j-log4j12</artifactId>
  138. <groupId>org.slf4j</groupId>
  139. </exclusion>
  140. </exclusions>
  141. </dependency>
  142. <dependency>
  143. <groupId>net.lingala.zip4j</groupId>
  144. <artifactId>zip4j</artifactId>
  145. <version>1.3.2</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>commons-fileupload</groupId>
  149. <artifactId>commons-fileupload</artifactId>
  150. <version>1.3</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.commons</groupId>
  154. <artifactId>commons-lang3</artifactId>
  155. <version>3.4</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>commons-httpclient</groupId>
  159. <artifactId>commons-httpclient</artifactId>
  160. <version>3.1</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.httpcomponents</groupId>
  164. <artifactId>httpmime</artifactId>
  165. <version>4.5.1</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.json</groupId>
  169. <artifactId>json</artifactId>
  170. <version>20151123</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>junit</groupId>
  174. <artifactId>junit</artifactId>
  175. <version>4.12</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.yihu.ehr</groupId>
  179. <artifactId>commons-admin-gateway-model</artifactId>
  180. <version>1.1.0</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.yihu.ehr</groupId>
  184. <artifactId>commons-util</artifactId>
  185. <version>1.1.0</version>
  186. <exclusions>
  187. <exclusion>
  188. <artifactId>log4j-core</artifactId>
  189. <groupId>org.apache.logging.log4j</groupId>
  190. </exclusion>
  191. <exclusion>
  192. <artifactId>log4j-api</artifactId>
  193. <groupId>org.apache.logging.log4j</groupId>
  194. </exclusion>
  195. </exclusions>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.yihu.ehr</groupId>
  199. <artifactId>commons-rest-model</artifactId>
  200. <version>1.1.0</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>com.yihu.jw</groupId>
  204. <artifactId>common-request-mapping</artifactId>
  205. <version>1.0.0</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>com.yihu.jw</groupId>
  209. <artifactId>common-rest-model</artifactId>
  210. <version>1.0.0</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.springframework.boot</groupId>
  214. <artifactId>spring-boot-starter-logging</artifactId>
  215. </dependency>
  216. </dependencies>
  217. <build>
  218. <finalName>app-emergency-server</finalName>
  219. <plugins>
  220. <plugin>
  221. <groupId>org.springframework.boot</groupId>
  222. <artifactId>spring-boot-maven-plugin </artifactId>
  223. </plugin>
  224. <plugin>
  225. <artifactId>maven-compiler-plugin</artifactId>
  226. <configuration>
  227. <source>1.8</source>
  228. <target>1.8</target>
  229. </configuration>
  230. </plugin>
  231. </plugins>
  232. </build>
  233. </project>