pom.xml 857 B

12345678910111213141516171819202122
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.zlt</groupId>
  6. <artifactId>zlt-demo</artifactId>
  7. <version>2.7.0</version>
  8. </parent>
  9. <artifactId>txlcn-demo</artifactId>
  10. <description>txlcn分布式事务demo</description>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <!-- 公共 -->
  14. <module>txlcn-demo-common</module>
  15. <!-- 服务a -->
  16. <module>txlcn-demo-spring-service-a</module>
  17. <!-- 服务b -->
  18. <module>txlcn-demo-spring-service-b</module>
  19. <!-- 服务c -->
  20. <module>txlcn-demo-spring-service-c</module>
  21. </modules>
  22. </project>