pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>file</artifactId>
  7. <groupId>com.usoftchina.saas</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>file-api</artifactId>
  12. <description>file service api</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-starter-openfeign</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.usoftchina.saas</groupId>
  24. <artifactId>core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.usoftchina.saas</groupId>
  28. <artifactId>file-dto</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.github.openfeign.form</groupId>
  32. <artifactId>feign-form</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.github.openfeign.form</groupId>
  36. <artifactId>feign-form-spring</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-fileupload</groupId>
  40. <artifactId>commons-fileupload</artifactId>
  41. </dependency>
  42. </dependencies>
  43. </project>