pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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>menduner-common</artifactId>
  19. <version>${revision}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.citu</groupId>
  23. <artifactId>citu-module-system-api</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <!-- Web 相关 -->
  27. <dependency>
  28. <groupId>org.springdoc</groupId>
  29. <artifactId>springdoc-openapi-ui</artifactId>
  30. <scope>provided</scope> <!-- 设置为 provided,主要是 PageParam 使用到 -->
  31. </dependency>
  32. <!-- 参数校验 -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <!-- RPC 远程调用相关 -->
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-openfeign</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. </dependencies>
  45. </project>