pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  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>uaa-reference</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>uaa-reference-xxx</artifactId>
  10. <description>调用 xxx 应用提供的接口</description>
  11. <!-- 该模块通常仅仅是继承 提供方提供的 dto/api 以屏蔽外部包路径,为可选模块,
  12. 若服务提供方未提供 DTO、Api 定义则在该模块放置 API、DTO、枚举等 -->
  13. <dependencies>
  14. <!-- xxx 相关依赖 -->
  15. <!--<dependency>
  16. <groupId>cn.itlym.platform</groupId>
  17. <artifactId>xxx-api</artifactId>
  18. <artifactId>xxx-client</artifactId>
  19. </dependency>-->
  20. </dependencies>
  21. </project>