pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.sf</groupId>
  6. <artifactId>openfeign-service-demo</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <!-- <relativePath>../../pom.xml</relativePath>-->
  9. </parent>
  10. <artifactId>openfeign-service-api</artifactId>
  11. <packaging>jar</packaging>
  12. <name>openfeign-service-api</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-openfeign</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. </dependency>
  26. </dependencies>
  27. </project>