.flattened-pom.xml 995 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.cdm</groupId>
  7. <artifactId>cdm-module-infra</artifactId>
  8. <version>2.0.0-jdk8-snapshot</version>
  9. </parent>
  10. <groupId>com.cdm</groupId>
  11. <artifactId>cdm-module-infra-api</artifactId>
  12. <version>2.0.0-jdk8-snapshot</version>
  13. <name>${project.artifactId}</name>
  14. <description>infra 模块 API,暴露给其它模块调用</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.cdm</groupId>
  18. <artifactId>cdm-common</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-validation</artifactId>
  23. <optional>true</optional>
  24. </dependency>
  25. </dependencies>
  26. </project>