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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.srm.bpm</groupId>
  8. <artifactId>bpm-pom</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>bpm-client</artifactId>
  13. <version>${parent.version}</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.srm.bpm</groupId>
  17. <artifactId>common-base</artifactId>
  18. <version>0.0.1-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.alibaba.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  23. <version>2.2.5.RELEASE</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-openfeign</artifactId>
  28. <version>2.2.5.RELEASE</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.github.openfeign</groupId>
  32. <artifactId>feign-httpclient</artifactId>
  33. <version>10.10.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.srm.bpm</groupId>
  37. <artifactId>bpm-client-base</artifactId>
  38. <version>${parent.version}</version>
  39. </dependency>
  40. </dependencies>
  41. </project>