mirror of
https://gitee.com/nutz/nutzboot.git
synced 2024-12-02 03:38:08 +08:00
25 lines
833 B
XML
25 lines
833 B
XML
<?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>org.nutz</groupId>
|
|
<artifactId>nutzboot-starter</artifactId>
|
|
<version>2.3.5-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>nutzboot-starter-seata</artifactId>
|
|
<name>nutzboot-starter-seata</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-rm-datasource</artifactId>
|
|
<version>${seata.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-spring</artifactId>
|
|
<version>${seata.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |