pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. </dependencies>
  118. <build>
  119. <finalName>svr-healthy-house</finalName>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <configuration>
  125. <mainClass>com.yihu.HealthyHouseApplication</mainClass>
  126. </configuration>
  127. </plugin>
  128. <plugin>
  129. <artifactId>maven-compiler-plugin</artifactId>
  130. <configuration>
  131. <source>1.8</source>
  132. <target>1.8</target>
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>