pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  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-adaptor</artifactId>
  10. <description>调用外部服务接口适配模块、主要做DTO转换、错误码转换,异常处理等。</description>
  11. <!--若未调用其他服务接口、则删掉该模块即可-->
  12. <dependencies>
  13. <!-- xxx 应用 -->
  14. <dependency>
  15. <groupId>cn.itlym.platform</groupId>
  16. <artifactId>uaa-reference-xxx</artifactId>
  17. <version>1.0-SNAPSHOT</version>
  18. <!-- 可能不是所有子业务都会依赖某个第三方提供的接口,故设置为可选,在具体业务模块中声明依赖 -->
  19. <optional>true</optional>
  20. </dependency>
  21. </dependencies>
  22. </project>