pom.xml 1.5 KB

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