1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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.pig4cloud</groupId>
- <artifactId>pigx-common</artifactId>
- <version>${pigx.version}</version>
- </parent>
- <artifactId>pigx-common-transaction</artifactId>
- <version>${pigx.version}</version>
- <packaging>jar</packaging>
- <name>pigx-common-transaction</name>
- <description>pigx lcn transaction</description>
- <dependencies>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pigx-common-core</artifactId>
- <version>${pigx.version}</version>
- </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>
|