| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright 1999-2018 Alibaba Group Holding Ltd. |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| --> |
| <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> |
| <groupId>io.seata</groupId> |
| <artifactId>seata-samples</artifactId> |
| <version>1.1.0</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>seata-samples-tcc</artifactId> |
| <version>1.1.0</version> |
| <packaging>pom</packaging> |
| <name>seata-samples-tcc ${project.version}</name> |
| <modules> |
| <module>dubbo-tcc-sample</module> |
| <module>local-tcc-sample</module> |
| <module>sofarpc-tcc-sample</module> |
| <module>transfer-tcc-sample</module> |
| <module>springboot-tcc-sample</module> |
| <module>hsf-tcc-sample</module> |
| </modules> |
| |
| <dependencyManagement> |
| <dependencies> |
| <!-- dubbo --> |
| <dependency> |
| <groupId>com.alibaba.spring</groupId> |
| <artifactId>spring-context-support</artifactId> |
| <version>1.0.11</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <!-- 解决高版本jdk启动报错:https://github.com/apache/dubbo/issues/6879 --> |
| <dependency> |
| <groupId>javax.annotation</groupId> |
| <artifactId>javax.annotation-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-context</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-beans</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-aop</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-tx</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-orm</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.seata</groupId> |
| <artifactId>seata-all</artifactId> |
| <version>${seata.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.seata</groupId> |
| <artifactId>seata-server</artifactId> |
| <version>${seata.version}</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>servlet-api</artifactId> |
| <groupId>javax.servlet</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.7</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-core</artifactId> |
| <version>1.2.9</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-access</artifactId> |
| <version>1.1.11</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>1.2.0</version> |
| </dependency> |
| </dependencies> |
| |
| </project> |