You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
<?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"> |
|
<parent> |
|
<artifactId>blockchain-common</artifactId> |
|
<groupId>com.blockchain</groupId> |
|
<version>1.0-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>blockchain-common-tx</artifactId> |
|
|
|
<properties> |
|
<!-- 分布式事务 --> |
|
<lcn.last.version>4.2.0-SNAPSHOT</lcn.last.version> |
|
<io-netty-version>4.1.12.Final</io-netty-version> |
|
</properties> |
|
<dependencies> |
|
<!-- 分布式事务 --> |
|
<dependency> |
|
<groupId>com.codingapi</groupId> |
|
<artifactId>transaction-springcloud</artifactId> |
|
<version>${lcn.last.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.last.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>*</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
</dependencies> |
|
|
|
</project> |