pom.xml 1.4 KB

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