pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.uas.ps</groupId>
  7. <artifactId>ps-parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>ps-sync-parent</artifactId>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>ps-sync-entity</module>
  14. <module>ps-sync-core</module>
  15. <module>ps-sync-producer</module>
  16. <module>ps-sync-consumer</module>
  17. </modules>
  18. <properties>
  19. <ps.sync.entity.version>0.0.1-SNAPSHOT</ps.sync.entity.version>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.uas.ps</groupId>
  25. <artifactId>ps-sync-entity</artifactId>
  26. <version>${ps.sync.entity.version}</version>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. </project>