pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. <version>1.2.17</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>net.sourceforge.jexcelapi</groupId>
  96. <artifactId>jxl</artifactId>
  97. <version>2.6</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.sun.jna</groupId>
  101. <artifactId>jna</artifactId>
  102. <version>3.0.9</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.yihu.jw</groupId>
  106. <artifactId>common-request-mapping</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.yihu.jw</groupId>
  110. <artifactId>common-rest-model</artifactId>
  111. <exclusions>
  112. <exclusion>
  113. <groupId>org.slf4j</groupId>
  114. <artifactId>*</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.yihu.jw</groupId>
  120. <artifactId>common-rest-model-es</artifactId>
  121. </dependency>
  122. <!-- ehr -->
  123. <dependency>
  124. <groupId>com.yihu.ehr</groupId>
  125. <artifactId>commons-admin-gateway-model</artifactId>
  126. <version>1.1.0</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.yihu.ehr</groupId>
  130. <artifactId>commons-util</artifactId>
  131. <version>1.1.0</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.yihu.ehr</groupId>
  135. <artifactId>commons-rest-model</artifactId>
  136. <version>1.1.0</version>
  137. </dependency>
  138. <!-- jkzl starter -->
  139. <dependency>
  140. <groupId>com.yihu</groupId>
  141. <artifactId>fastdfs-starter</artifactId>
  142. <version>2.0.0</version>
  143. </dependency>
  144. </dependencies>
  145. <build>
  146. <finalName>app-iot-server</finalName>
  147. <plugins>
  148. <plugin>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-maven-plugin </artifactId>
  151. </plugin>
  152. <plugin>
  153. <artifactId>maven-compiler-plugin</artifactId>
  154. <configuration>
  155. <source>1.8</source>
  156. <target>1.8</target>
  157. </configuration>
  158. </plugin>
  159. </plugins>
  160. <resources>
  161. <resource>
  162. <!--打包的时候把resources下的资源移到classpath下-->
  163. <directory>${basedir}/src/main/webapp</directory>
  164. <targetPath>${project.build.directory}/classes</targetPath>
  165. <includes>
  166. <include>**/**</include>
  167. </includes>
  168. </resource>
  169. <resource>
  170. <!--打包的时候把resources下的资源移到classpath下-->
  171. <directory>${basedir}/src/main/resources</directory>
  172. <targetPath>${project.build.directory}/classes</targetPath>
  173. <includes>
  174. <include>**/**</include>
  175. </includes>
  176. </resource>
  177. </resources>
  178. </build>
  179. </project>