pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <artifactId>sample_client</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>sample_client</name>
  9. <description>Demo project for Spring Boot</description>
  10. <parent>
  11. <groupId>com.liangjian11</groupId>
  12. <artifactId>oauth2_parent</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <relativePath>../oauth2_parent/pom.xml</relativePath>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-actuator</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  28. </dependency>
  29. <!--<dependency>-->
  30. <!--<groupId>org.springframework.cloud</groupId>-->
  31. <!--<artifactId>spring-cloud-starter-ribbon</artifactId>-->
  32. <!--</dependency>-->
  33. <!--<dependency>-->
  34. <!--<groupId>org.springframework.cloud</groupId>-->
  35. <!--<artifactId>spring-cloud-starter-config</artifactId>-->
  36. <!--</dependency>-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>