pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.pig4cloud</groupId>
  7. <artifactId>pigx-common</artifactId>
  8. <version>1.7.0</version>
  9. </parent>
  10. <artifactId>pigx-common-transaction</artifactId>
  11. <packaging>jar</packaging>
  12. <description>pigx lcn transaction</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.pig4cloud</groupId>
  16. <artifactId>pigx-common-core</artifactId>
  17. <version>1.7.0</version>
  18. </dependency>
  19. <!--lcn 模块端控制依赖-->
  20. <dependency>
  21. <groupId>com.codingapi</groupId>
  22. <artifactId>tx-client</artifactId>
  23. <version>${lcn.version}</version>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.slf4j</groupId>
  27. <artifactId>*</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.codingapi</groupId>
  33. <artifactId>tx-plugins-db</artifactId>
  34. <version>${lcn.version}</version>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>*</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <!--feign 依赖-->
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-openfeign</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>