pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.keao.edu</groupId>
  8. <artifactId>edu-user</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>edu-user-client-api</artifactId>
  12. <name>edu-user-client-api</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-openfeign-core</artifactId>
  21. <version>2.1.2.RELEASE</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.keao.edu</groupId>
  26. <artifactId>edu-common</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.keao.edu</groupId>
  30. <artifactId>edu-auth-api</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.keao.edu</groupId>
  34. <artifactId>edu-im-api</artifactId>
  35. </dependency>
  36. </dependencies>
  37. </project>