pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>com.fdkankan</groupId>
  8. <artifactId>4dkankan-parent</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.fdkankan</groupId>
  13. <artifactId>4dkankan-common</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.mybatis.spring.boot</groupId>
  17. <artifactId>mybatis-spring-boot-starter</artifactId>
  18. <version>1.3.2</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-all</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>servlet-api</artifactId>
  31. <scope>provided</scope>
  32. <version>2.4</version>
  33. </dependency>
  34. <!-- <dependency>-->
  35. <!-- <groupId>com.alibaba.cloud</groupId>-->
  36. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  37. <!-- <version>2.1.0.RELEASE</version>-->
  38. <!-- </dependency>-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.springframework.cloud</groupId>-->
  41. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  42. <!-- <version>2.2.10.RELEASE</version>-->
  43. <!-- </dependency>-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.springframework.boot</groupId>-->
  46. <!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
  47. <!-- </dependency>-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-webflux</artifactId>
  51. </dependency>
  52. <!-- <dependency>-->
  53. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  54. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  55. <!-- <version>1.3.2</version>-->
  56. <!-- </dependency>-->
  57. <!-- <dependency>-->
  58. <!-- <groupId>mysql</groupId>-->
  59. <!-- <artifactId>mysql-connector-java</artifactId>-->
  60. <!-- <scope>runtime</scope>-->
  61. <!-- </dependency>-->
  62. <!-- <dependency>-->
  63. <!-- <groupId>org.springframework.boot</groupId>-->
  64. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  65. <!-- <scope>test</scope>-->
  66. <!-- <exclusions>-->
  67. <!-- <exclusion>-->
  68. <!-- <groupId>org.junit.vintage</groupId>-->
  69. <!-- <artifactId>junit-vintage-engine</artifactId>-->
  70. <!-- </exclusion>-->
  71. <!-- <exclusion>-->
  72. <!-- <groupId>junit</groupId>-->
  73. <!-- <artifactId>junit</artifactId>-->
  74. <!-- </exclusion>-->
  75. <!-- </exclusions>-->
  76. <!-- </dependency>-->
  77. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/com.alibaba/fastjson &ndash;&gt;-->
  78. <!-- <dependency>-->
  79. <!-- <groupId>com.alibaba</groupId>-->
  80. <!-- <artifactId>fastjson</artifactId>-->
  81. <!-- <version>1.2.58</version>-->
  82. <!-- </dependency>-->
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  85. <!-- <artifactId>httpclient</artifactId>-->
  86. <!-- </dependency>-->
  87. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/com.alibaba/druid &ndash;&gt;-->
  88. <!-- <dependency>-->
  89. <!-- <groupId>com.alibaba</groupId>-->
  90. <!-- <artifactId>druid</artifactId>-->
  91. <!-- <version>1.1.17</version>-->
  92. <!-- </dependency>-->
  93. <!-- <dependency>-->
  94. <!-- <groupId>io.springfox</groupId>-->
  95. <!-- <artifactId>springfox-swagger2</artifactId>-->
  96. <!-- <version>2.9.2</version>-->
  97. <!-- </dependency>-->
  98. <!-- <dependency>-->
  99. <!-- <groupId>io.springfox</groupId>-->
  100. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  101. <!-- <version>2.9.2</version>-->
  102. <!-- </dependency>-->
  103. <!-- <dependency>-->
  104. <!-- <groupId>org.springframework.plugin</groupId>-->
  105. <!-- <artifactId>spring-plugin-core</artifactId>-->
  106. <!-- <version>1.2.0.RELEASE</version>-->
  107. <!-- </dependency>-->
  108. <!-- <dependency>-->
  109. <!-- <groupId>org.springframework.plugin</groupId>-->
  110. <!-- <artifactId>spring-plugin-metadata</artifactId>-->
  111. <!-- <version>1.2.0.RELEASE</version>-->
  112. <!-- </dependency>-->
  113. <!-- <dependency>-->
  114. <!-- <groupId>com.github.xiaoymin</groupId>-->
  115. <!-- <artifactId>swagger-bootstrap-ui</artifactId>-->
  116. <!-- <version>1.9.4</version>-->
  117. <!-- </dependency>-->
  118. <!-- <dependency>-->
  119. <!-- <groupId>org.springframework.boot</groupId>-->
  120. <!-- <artifactId>spring-boot-starter-aop</artifactId>-->
  121. <!-- </dependency>-->
  122. </dependencies>
  123. <build>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-compiler-plugin</artifactId>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>