springdoc-openapi-common-1.6.15.pom 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springdoc</groupId>
  5. <artifactId>springdoc-openapi</artifactId>
  6. <version>1.6.15</version>
  7. </parent>
  8. <artifactId>springdoc-openapi-common</artifactId>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-autoconfigure</artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-configuration-processor</artifactId>
  17. <optional>true</optional>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.swagger.core.v3</groupId>
  25. <artifactId>swagger-core</artifactId>
  26. </dependency>
  27. <!-- Actuator dependencies -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-actuator</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <!-- For Enhanced Pageable Support -->
  34. <dependency>
  35. <groupId>org.springframework.data</groupId>
  36. <artifactId>spring-data-rest-core</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <!-- For Spring Cloud Function Support -->
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-function-web</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-jar-plugin</artifactId>
  51. <configuration>
  52. <archive>
  53. <manifestEntries>
  54. <Automatic-Module-Name>org.springdoc.openapi.common
  55. </Automatic-Module-Name>
  56. </manifestEntries>
  57. </archive>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>