pom.xml 932 B

12345678910111213141516171819202122232425262728293031
  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.zfjg</groupId>
  6. <artifactId>zfjg-common</artifactId>
  7. <version>3.6.1</version>
  8. </parent>
  9. <groupId>com.zfjg.comm.datasync</groupId>
  10. <artifactId>zfjg-common-datasync</artifactId>
  11. <packaging>jar</packaging>
  12. <name>zfjg-common-datasync</name>
  13. <description>
  14. 数据同步通用模块
  15. </description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.zfjg</groupId>
  22. <artifactId>zfjg-common-core</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>