pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.unis.base</groupId>
  9. <artifactId>base-service</artifactId>
  10. <version>0.0.2</version>
  11. </parent>
  12. <artifactId>base-client</artifactId>
  13. <name>base-client</name>
  14. <version>0.0.2-SNAPSHOT</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>io.github.openfeign.form</groupId>
  18. <artifactId>feign-form-spring</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.github.openfeign.form</groupId>
  22. <artifactId>feign-form</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-openfeign</artifactId>
  27. </dependency>
  28. <dependency>
  29. <artifactId>base-common</artifactId>
  30. <groupId>com.unis.base</groupId>
  31. <version>0.0.2</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <finalName>${project.name}</finalName>
  36. </build>
  37. </project>