pom.xml 973 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.bex</groupId>
  8. <artifactId>bex-cloud-parent</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. <relativePath>../bex-cloud-parent/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>bex-cloud-staking</artifactId>
  13. <packaging>pom</packaging>
  14. <name>BEX 质押服务 (bex-cloud-staking)</name>
  15. <description>质押产品管理、质押/赎回、收益结算</description>
  16. <modules>
  17. <module>bex-cloud-staking-core</module>
  18. <module>bex-cloud-staking-entity</module>
  19. <module>bex-cloud-staking-service</module>
  20. <module>bex-cloud-staking-api</module>
  21. </modules>
  22. </project>