| 12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.seata</groupId>
- <artifactId>seata-parent</artifactId>
- <version>1.6.1</version>
- </parent>
- <artifactId>seata-saga</artifactId>
- <packaging>pom</packaging>
- <name>seata-saga 1.6.1</name>
- <description>saga top parent for Seata built with Maven</description>
- <dependencies>
- <dependency>
- <groupId>io.seata</groupId>
- <artifactId>seata-common</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- </dependency>
- </dependencies>
- </project>
|