pom.xml 833 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  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-web</artifactId>
  10. <description>为自身前端提供的接口</description>
  11. <!--如果前后分离,则不需要该模块-->
  12. <dependencies>
  13. <!-- 将业务模块引入 -->
  14. <dependency>
  15. <groupId>cn.itlym.platform</groupId>
  16. <artifactId>uaa-xxx</artifactId>
  17. </dependency>
  18. </dependencies>
  19. </project>