pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.github.microservice.components</groupId>
  6. <artifactId>Swagger2</artifactId>
  7. <packaging>jar</packaging>
  8. <name>Swagger2</name>
  9. <description>api文档生成工具</description>
  10. <parent>
  11. <artifactId>MSModule</artifactId>
  12. <groupId>com.github.microservice</groupId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <relativePath>../../super/MSModule</relativePath>
  15. </parent>
  16. <properties>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.github.microservice</groupId>
  21. <artifactId>PCore</artifactId>
  22. <version>1.0.0-SNAPSHOT</version>
  23. </dependency>
  24. <!-- <dependency>-->
  25. <!-- <groupId>io.springfox</groupId>-->
  26. <!-- <artifactId>springfox-swagger2</artifactId>-->
  27. <!-- <version>${swagger2.version}</version>-->
  28. <!-- </dependency>-->
  29. <!-- <dependency>-->
  30. <!-- <groupId>io.springfox</groupId>-->
  31. <!-- <artifactId>springfox-boot-starter</artifactId>-->
  32. <!-- <version>${swagger2.version}</version>-->
  33. <!-- </dependency>-->
  34. <!-- <dependency>-->
  35. <!-- <groupId>io.springfox</groupId>-->
  36. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  37. <!-- <version>${swagger2.version}</version>-->
  38. <!-- </dependency>-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.springdoc</groupId>-->
  41. <!-- <artifactId>springdoc-openapi-ui</artifactId>-->
  42. <!-- <version>1.7.0</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>org.springdoc</groupId>
  46. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  47. <version>2.6.0</version>
  48. </dependency>
  49. <!-- <dependency>-->
  50. <!-- <groupId>com.fasterxml.jackson.core</groupId>-->
  51. <!-- <artifactId>jackson-annotations</artifactId>-->
  52. <!-- <version>${jackson.version}</version>-->
  53. <!-- </dependency>-->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-actuator</artifactId>
  57. <version>${spring-boot.version}</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-actuator-autoconfigure</artifactId>
  63. <version>${spring-boot.version}</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. </dependencies>
  67. </project>