pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  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-provider</artifactId>
  10. <description>为外部提供服务,若子业务过多,可拆分为多个 provider,该模块也可合并至具体 module 中</description>
  11. <dependencies>
  12. <!-- 接口 -->
  13. <dependency>
  14. <groupId>cn.itlym.platform</groupId>
  15. <artifactId>uaa-api</artifactId>
  16. </dependency>
  17. <!-- 将业务模块引入 -->
  18. <dependency>
  19. <groupId>cn.itlym.platform</groupId>
  20. <artifactId>uaa-xxx</artifactId>
  21. </dependency>
  22. </dependencies>
  23. </project>