pom.xml 6.0 KB

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