pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.iocoder.cloud</groupId>
  8. <artifactId>yudao-module-dms</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>yudao-module-dms-api</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <description>
  18. dms 模块 API,暴露给其它模块调用
  19. </description>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.iocoder.cloud</groupId>
  23. <artifactId>yudao-common</artifactId>
  24. </dependency>
  25. <!-- Web 相关 -->
  26. <dependency>
  27. <groupId>org.springdoc</groupId>
  28. <artifactId>springdoc-openapi-ui</artifactId>
  29. <scope>provided</scope> <!-- 设置为 provided,主要是 PageParam 使用到 -->
  30. </dependency>
  31. <!-- 参数校验 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-validation</artifactId>
  35. <optional>true</optional>
  36. </dependency>
  37. <!-- RPC 远程调用相关 -->
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-starter-openfeign</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. </dependencies>
  44. </project>