pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.yihu.jw</groupId>
  7. <artifactId>wlyy-parent-pom</artifactId>
  8. <version>2.0.0</version>
  9. <relativePath>../../wlyy-parent-pom/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.yihu.jw</groupId>
  12. <artifactId>svr-healthy-house</artifactId>
  13. <version>${parent.version}</version>
  14. <packaging>jar</packaging>
  15. <name>svr-healthy-house</name>
  16. <description>healthy-house for jw2.0</description>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <spring-cloud.version>Finchley.SR1</spring-cloud.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-jpa</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-tomcat</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-jdbc</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-aop</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-logging</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.cloud</groupId>
  59. <artifactId>spring-cloud-starter-eureka</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.cloud</groupId>
  63. <artifactId>spring-cloud-starter-config</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.data</groupId>
  67. <artifactId>spring-data-jpa</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.yihu</groupId>
  71. <artifactId>swagger-starter</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.yihu</groupId>
  75. <artifactId>mysql-starter</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.yihu.jw</groupId>
  79. <artifactId>common-request-mapping</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.yihu.jw</groupId>
  83. <artifactId>common-entity</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.yihu.jw</groupId>
  87. <artifactId>common-rest-model</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.yihu.jw</groupId>
  91. <artifactId>common-util</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springside</groupId>
  95. <artifactId>springside-core</artifactId>
  96. <version>4.2.3-GA</version>
  97. <!--<classifier>GA</classifier>-->
  98. </dependency>
  99. <!-- Redis -->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-data-redis</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>redis.clients</groupId>
  106. <artifactId>jedis</artifactId>
  107. </dependency>
  108. <!-- Redis -->
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-security</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.security.oauth</groupId>
  115. <artifactId>spring-security-oauth2</artifactId>
  116. </dependency>
  117. <!-- poi xml导入导出工具 start-->
  118. <dependency>
  119. <groupId>org.apache.poi</groupId>
  120. <artifactId>poi</artifactId>
  121. <exclusions>
  122. <exclusion>
  123. <groupId>com.yihu.ehr</groupId>
  124. <artifactId>commons-util</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>org.apache.commons</groupId>
  128. <artifactId>commons-collections4</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi-ooxml</artifactId>
  135. </dependency>
  136. <!-- xlsx 依赖这个包 -->
  137. <dependency>
  138. <groupId>org.apache.poi</groupId>
  139. <artifactId>poi-ooxml-schemas</artifactId>
  140. </dependency>
  141. <!-- poi xml导入导出工具 end -->
  142. <!--jxl导出工具-->
  143. <dependency>
  144. <groupId>net.sourceforge.jexcelapi</groupId>
  145. <artifactId>jxl</artifactId>
  146. <version>2.6.10</version>
  147. </dependency>
  148. </dependencies>
  149. <build>
  150. <finalName>svr-healthy-house</finalName>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. <configuration>
  156. <mainClass>com.yihu.HealthyHouseApplication</mainClass>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <artifactId>maven-compiler-plugin</artifactId>
  161. <configuration>
  162. <source>1.8</source>
  163. <target>1.8</target>
  164. </configuration>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>