pom.xml 1.5 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>${pigx.version}</version>
  9. </parent>
  10. <artifactId>pigx-common-transaction</artifactId>
  11. <packaging>jar</packaging>
  12. <name>pigx-common-transaction</name>
  13. <description>pigx lcn transaction</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.pig4cloud</groupId>
  17. <artifactId>pigx-common-core</artifactId>
  18. <version>${pigx.version}</version>
  19. </dependency>
  20. <!--lcn 模块端控制依赖-->
  21. <dependency>
  22. <groupId>com.codingapi</groupId>
  23. <artifactId>tx-client</artifactId>
  24. <version>${lcn.version}</version>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>org.slf4j</groupId>
  28. <artifactId>*</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.codingapi</groupId>
  34. <artifactId>tx-plugins-db</artifactId>
  35. <version>${lcn.version}</version>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>*</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!--feign 依赖-->
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-openfeign</artifactId>
  47. </dependency>
  48. </dependencies>
  49. </project>