pom.xml 835 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>central-platform</artifactId>
  7. <version>2.7.0</version>
  8. </parent>
  9. <artifactId>zlt-demo</artifactId>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <!-- txlcn分布式事务demo -->
  13. <module>txlcn-demo</module>
  14. <!-- sharding-jdbc分库分表demo -->
  15. <module>sharding-jdbc-demo</module>
  16. <!-- rocketmq消息队列demo -->
  17. <module>rocketmq-demo</module>
  18. <!-- seata分布式事务demo -->
  19. <module>seata-demo</module>
  20. </modules>
  21. </project>