pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.citu</groupId>
  6. <artifactId>menduner</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>menduner-system-api</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.artifactId}</name>
  12. <description>
  13. 门墩儿招聘求职 模块 API,暴露给其它模块调用
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.citu</groupId>
  18. <artifactId>citu-common</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.citu</groupId>
  22. <artifactId>citu-module-system-api</artifactId>
  23. <version>${revision}</version>
  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>