pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.message</groupId>
  9. <artifactId>message-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>message-client</artifactId>
  13. <name>message-client</name>
  14. <!--<version>1.0-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>message-common</artifactId>
  30. <groupId>com.unis.message</groupId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <finalName>${project.name}</finalName>
  36. </build>
  37. </project>