| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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>
- <groupId>io.seata</groupId>
- <artifactId>seata-common</artifactId>
- <version>1.6.1</version>
- <name>seata-common 1.6.1</name>
- <description>common library for Seata built with Maven</description>
- <url>https://seata.io</url>
- <organization>
- <name>Seata</name>
- <url>https://github.com/seata</url>
- </organization>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>https://www.apache.org/licenses/LICENSE-2.0</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>Seata</id>
- <name>Seata</name>
- <email>dev-seata@googlegroups.com</email>
- <url>https://seata.io</url>
- </developer>
- </developers>
- <scm>
- <connection>scm:git@github.com:seata/seata.git</connection>
- <developerConnection>scm:git@github.com:seata/seata.git</developerConnection>
- <url>git@github.com:seata/seata.git</url>
- </scm>
- <issueManagement>
- <system>github</system>
- <url>https://github.com/seata/seata/issues</url>
- </issueManagement>
- <dependencies>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>4.1.76.Final</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.36</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- </dependency>
- </dependencies>
- </project>
|