123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.jmcloud</groupId>
- <artifactId>scis-common</artifactId>
- <version>3.10.0</version>
- </parent>
- <artifactId>scis-common-transaction</artifactId>
- <packaging>jar</packaging>
- <description>scis lcn transaction</description>
- <dependencies>
- <dependency>
- <groupId>com.jmcloud</groupId>
- <artifactId>scis-common-core</artifactId>
- </dependency>
- <!--lcn 模块端控制依赖-->
- <dependency>
- <groupId>com.codingapi</groupId>
- <artifactId>tx-client</artifactId>
- <version>${lcn.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.codingapi</groupId>
- <artifactId>tx-plugins-db</artifactId>
- <version>${lcn.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--feign 依赖-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- </dependencies>
- </project>
|