pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ /*
  4. ~ * Copyright (c) 2019-2020, 冷冷 (wangiegie@gmail.com).
  5. ~ * <p>
  6. ~ * Licensed under the GNU Lesser General Public License 3.0 (the "License");
  7. ~ * you may not use this file except in compliance with the License.
  8. ~ * You may obtain a copy of the License at
  9. ~ * <p>
  10. ~ * https://www.gnu.org/licenses/lgpl.html
  11. ~ * <p>
  12. ~ * Unless required by applicable law or agreed to in writing, software
  13. ~ * distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ * See the License for the specific language governing permissions and
  16. ~ * limitations under the License.
  17. ~ */
  18. -->
  19. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  20. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>cn.lttc.modules</groupId>
  24. <artifactId>lttcai-common</artifactId>
  25. <version>${revision}</version>
  26. </parent>
  27. <artifactId>lttcai-common-seata</artifactId>
  28. <packaging>jar</packaging>
  29. <description>lttcai 分布式事务处理模块</description>
  30. <dependencies>
  31. <!--核心依赖-->
  32. <dependency>
  33. <groupId>cn.lttc.modules</groupId>
  34. <artifactId>lttcai-common-core</artifactId>
  35. </dependency>
  36. <!-- seata-->
  37. <dependency>
  38. <groupId>com.alibaba.cloud</groupId>
  39. <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>