pom.xml 1.7 KB

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