pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.unis</groupId>
  12. <artifactId>flow-long</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>flow-long</name>
  15. <description>Flow long project for Spring Boot</description>
  16. <properties>
  17. <skipTests>true</skipTests>
  18. <java.version>1.8</java.version>
  19. <mybatis.version>2.1.4</mybatis.version>
  20. <fastjson.version>1.2.83</fastjson.version>
  21. <mybatisPlus.version>3.4.1</mybatisPlus.version>
  22. <spring-cloud.version>2021.0.5</spring-cloud.version>
  23. <springdoc.version>1.6.14</springdoc.version>
  24. <knife4j.version>4.0.0</knife4j.version>
  25. </properties>
  26. <dependencies>
  27. <!--接口文档-->
  28. <dependency>
  29. <groupId>org.springdoc</groupId>
  30. <artifactId>springdoc-openapi-webmvc-core</artifactId>
  31. <version>1.6.9</version>
  32. </dependency>
  33. <!--<dependency>
  34. <groupId>org.springdoc</groupId>
  35. <artifactId>springdoc-openapi-security</artifactId>
  36. <version>1.6.9</version>
  37. </dependency>-->
  38. <dependency>
  39. <groupId>io.swagger.core.v3</groupId>
  40. <artifactId>swagger-annotations</artifactId>
  41. <version>2.2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-commons</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springdoc</groupId>
  50. <artifactId>springdoc-openapi-ui</artifactId>
  51. <version>${springdoc.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.github.xiaoymin</groupId>
  55. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  56. <version>${knife4j.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-test</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. <dependencyManagement>
  73. <dependencies>
  74. <dependency>
  75. <groupId>org.springframework.cloud</groupId>
  76. <artifactId>spring-cloud-dependencies</artifactId>
  77. <version>${spring-cloud.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. </dependencies>
  82. </dependencyManagement>
  83. <build>
  84. <finalName>${project.artifactId}</finalName>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>