pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.chelvc.framework</groupId>
  8. <artifactId>framework-dependencies</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-cloud-client-feign</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <framework-common.version>1.0.0-RELEASE</framework-common.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.chelvc.framework</groupId>
  21. <artifactId>framework-common</artifactId>
  22. <version>${framework-common.version}</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-openfeign-core</artifactId>
  28. <scope>compile</scope>
  29. </dependency>
  30. </dependencies>
  31. </project>