pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2018-2025, avenue All rights reserved.
  4. ~
  5. ~ Redistribution and use in source and binary forms, with or without
  6. ~ modification, are permitted provided that the following conditions are met:
  7. ~
  8. ~ Redistributions of source code must retain the above copyright notice,
  9. ~ this list of conditions and the following disclaimer.
  10. ~ Redistributions in binary form must reproduce the above copyright
  11. ~ notice, this list of conditions and the following disclaimer in the
  12. ~ documentation and/or other materials provided with the distribution.
  13. ~ Neither the name of the pig4cloud.com developer nor the names of its
  14. ~ contributors may be used to endorse or promote products derived from
  15. ~ this software without specific prior written permission.
  16. ~ Author: avenue
  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>com.emergency</groupId>
  24. <artifactId>avenue-common</artifactId>
  25. <version>4.6.0</version>
  26. </parent>
  27. <artifactId>avenue-common-seata</artifactId>
  28. <packaging>jar</packaging>
  29. <description>avenue 分布式事务处理模块</description>
  30. <dependencies>
  31. <!--核心依赖-->
  32. <dependency>
  33. <groupId>com.emergency</groupId>
  34. <artifactId>avenue-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. <!-- seata kryo 序列化-->
  42. <dependency>
  43. <groupId>io.seata</groupId>
  44. <artifactId>seata-serializer-kryo</artifactId>
  45. </dependency>
  46. </dependencies>
  47. </project>