pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. <parent>
  5. <groupId>com.yihu.jw</groupId>
  6. <artifactId>wlyy-parent-pom</artifactId>
  7. <version>2.0.0</version>
  8. <relativePath>../../wlyy-parent-pom/pom.xml</relativePath>
  9. </parent>
  10. <groupId>com.yihu.ehr.iot</groupId>
  11. <artifactId>app-iot-server</artifactId>
  12. <packaging>war</packaging>
  13. <version>${parent.version}</version>
  14. <!-- 依赖包 -->
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-tomcat</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-tomcat</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-security</artifactId>
  39. </dependency>
  40. <!--<dependency>-->
  41. <!--<groupId>org.springframework.session</groupId>-->
  42. <!--<artifactId>spring-session-data-redis</artifactId>-->
  43. <!--</dependency>-->
  44. <dependency>
  45. <groupId>org.apache.tomcat.embed</groupId>
  46. <artifactId>tomcat-embed-jasper</artifactId>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>jstl</artifactId>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.tiles</groupId>
  56. <artifactId>tiles-extras</artifactId>
  57. <version>3.0.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger2</artifactId>
  62. <version>2.4.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.springfox</groupId>
  66. <artifactId>springfox-swagger-ui</artifactId>
  67. <version>2.4.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.searchbox</groupId>
  71. <artifactId>jest</artifactId>
  72. <version>2.4.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>net.lingala.zip4j</groupId>
  76. <artifactId>zip4j</artifactId>
  77. <version>1.3.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-lang3</artifactId>
  82. <version>3.4</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.json</groupId>
  86. <artifactId>json</artifactId>
  87. <version>20151123</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>fastjson</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>net.sourceforge.jexcelapi</groupId>
  95. <artifactId>jxl</artifactId>
  96. <version>2.6</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.sun.jna</groupId>
  100. <artifactId>jna</artifactId>
  101. <version>3.0.9</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.yihu.jw</groupId>
  105. <artifactId>common-request-mapping</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.yihu.jw</groupId>
  109. <artifactId>common-rest-model</artifactId>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>org.slf4j</groupId>
  113. <artifactId>*</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.yihu.jw</groupId>
  119. <artifactId>common-rest-model-es</artifactId>
  120. </dependency>
  121. <!-- ehr -->
  122. <dependency>
  123. <groupId>com.yihu.ehr</groupId>
  124. <artifactId>commons-admin-gateway-model</artifactId>
  125. <version>1.1.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.yihu.ehr</groupId>
  129. <artifactId>commons-util</artifactId>
  130. <version>1.1.0</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.yihu.ehr</groupId>
  134. <artifactId>commons-rest-model</artifactId>
  135. <version>1.1.0</version>
  136. </dependency>
  137. <!-- jkzl starter -->
  138. <dependency>
  139. <groupId>com.yihu</groupId>
  140. <artifactId>fastdfs-starter</artifactId>
  141. <version>2.0.0</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.httpcomponents</groupId>
  145. <artifactId>httpmime</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>eu.medsea.mimeutil</groupId>
  149. <artifactId>mime-util</artifactId>
  150. <version>2.1.3</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.h2database</groupId>
  154. <artifactId>h2</artifactId>
  155. <scope>runtime</scope>
  156. </dependency>
  157. </dependencies>
  158. <build>
  159. <finalName>app-iot-server</finalName>
  160. <plugins>
  161. <plugin>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-maven-plugin </artifactId>
  164. </plugin>
  165. <plugin>
  166. <artifactId>maven-compiler-plugin</artifactId>
  167. <configuration>
  168. <source>1.8</source>
  169. <target>1.8</target>
  170. </configuration>
  171. </plugin>
  172. </plugins>
  173. <resources>
  174. <resource>
  175. <!--打包的时候把resources下的资源移到classpath下-->
  176. <directory>${basedir}/src/main/webapp</directory>
  177. <targetPath>${project.build.directory}/classes</targetPath>
  178. <includes>
  179. <include>**/**</include>
  180. </includes>
  181. </resource>
  182. <resource>
  183. <!--打包的时候把resources下的资源移到classpath下-->
  184. <directory>${basedir}/src/main/resources</directory>
  185. <targetPath>${project.build.directory}/classes</targetPath>
  186. <includes>
  187. <include>**/**</include>
  188. </includes>
  189. </resource>
  190. </resources>
  191. </build>
  192. </project>