pom.xml 926 B

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>cn.itlym.platform</groupId>
  5. <artifactId>shoulder-user-center</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>uaa-modules</artifactId>
  10. <packaging>pom</packaging>
  11. <description>具体业务/子业务 按模块划分</description>
  12. <dependencies>
  13. <!-- 统一依赖 core -->
  14. <dependency>
  15. <groupId>cn.itlym.platform</groupId>
  16. <artifactId>uaa-core</artifactId>
  17. </dependency>
  18. </dependencies>
  19. <modules>
  20. <module>uaa-xxx</module>
  21. </modules>
  22. </project>