pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <parent>
  6. <artifactId>quality-service</artifactId>
  7. <groupId>com.unis.quality</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>quality-client</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.github.openfeign.form</groupId>
  15. <artifactId>feign-form-spring</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>io.github.openfeign.form</groupId>
  19. <artifactId>feign-form</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-openfeign</artifactId>
  24. </dependency>
  25. <dependency>
  26. <artifactId>quality-common</artifactId>
  27. <groupId>com.unis.quality</groupId>
  28. <version>1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.unis.base</groupId>
  32. <artifactId>base-common</artifactId>
  33. <version>0.0.2</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.unis.base</groupId>
  38. <artifactId>base-common</artifactId>
  39. <version>0.0.2</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <finalName>quality-client</finalName>
  44. </build>
  45. </project>