pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>transfers</artifactId>
  7. <groupId>com.usoftchina.saas</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>transfers-auth</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-netflix-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-webmvc</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.usoftchina.saas</groupId>
  23. <artifactId>auth-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>javax.servlet</groupId>
  27. <artifactId>javax.servlet-api</artifactId>
  28. <scope>compile</scope>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.github.openfeign</groupId>
  33. <artifactId>feign-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.usoftchina.saas</groupId>
  37. <artifactId>account-api</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>