pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.com.qmth.framework</groupId>
  6. <artifactId>config-center-client</artifactId>
  7. <packaging>jar</packaging>
  8. <version>1.0.0</version>
  9. <parent>
  10. <groupId>cn.com.qmth.framework</groupId>
  11. <artifactId>config-center</artifactId>
  12. <version>1.0.0</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-autoconfigure</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-actuator</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-logging</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-lang3</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.squareup.okhttp3</groupId>
  34. <artifactId>okhttp</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.fasterxml.jackson.core</groupId>
  38. <artifactId>jackson-databind</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-codec</groupId>
  42. <artifactId>commons-codec</artifactId>
  43. </dependency>
  44. </dependencies>
  45. </project>