bpm-client-0.0.2.pom 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ The Hefei JingTong RDC(Research and Development Centre) Group.
  4. ~ __________________
  5. ~
  6. ~ Copyright 2015-2021
  7. ~ All Rights Reserved.
  8. ~
  9. ~ NOTICE: All information contained herein is, and remains
  10. ~ the property of JingTong Company and its suppliers,
  11. ~ if any.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>com.jingtong</groupId>
  19. <artifactId>base-bpm</artifactId>
  20. <version>0.0.2</version>
  21. </parent>
  22. <artifactId>bpm-client</artifactId>
  23. <version>${parent.version}</version>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.jingtong.common</groupId>
  27. <artifactId>base</artifactId>
  28. <version>0.0.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba.cloud</groupId>
  32. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  33. <version>2.2.5.RELEASE</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-starter-openfeign</artifactId>
  38. <version>2.2.5.RELEASE</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.github.openfeign</groupId>
  42. <artifactId>feign-httpclient</artifactId>
  43. <version>10.10.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.jingtong</groupId>
  47. <artifactId>bpm-client-base</artifactId>
  48. <version>${parent.version}</version>
  49. </dependency>
  50. </dependencies>
  51. </project>