1
1

pom.xml 894 B

12345678910111213141516171819202122232425
  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. <groupId>com.zheng</groupId>
  5. <artifactId>zheng-wechat</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>pom</packaging>
  8. <name>zheng-wechat</name>
  9. <url>http://www.zhangshuzheng.cn</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.7</maven.compiler.source>
  13. <maven.compiler.target>1.7</maven.compiler.target>
  14. <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
  15. </properties>
  16. <modules>
  17. <module>zheng-wechat-mp</module>
  18. <module>zheng-wechat-app</module>
  19. </modules>
  20. </project>