pom.xml 873 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.zqt.ccj</groupId>
  7. <artifactId>patrol</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>patrol-module-pay</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>patrol-module-pay-api</module>
  15. <module>patrol-module-pay-biz</module>
  16. </modules>
  17. <name>${project.artifactId}</name>
  18. <description>
  19. pay 模块,我们放支付业务,提供业务的支付能力。
  20. 例如说:商户、应用、支付、退款等等
  21. </description>
  22. </project>