pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>4.4.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-xiaomai</artifactId>
  12. <description>
  13. xiaomai
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-common</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.springfox</groupId>
  22. <artifactId>springfox-swagger2</artifactId>
  23. <version>2.9.2</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>io.swagger</groupId>
  28. <artifactId>swagger-annotations</artifactId>
  29. <version>1.5.21</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.ruoyi</groupId>
  34. <artifactId>ruoyi-framework</artifactId>
  35. </dependency>
  36. <!-- swagger2-->
  37. <dependency>
  38. <groupId>io.springfox</groupId>
  39. <artifactId>springfox-swagger2</artifactId>
  40. </dependency>
  41. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  42. <!-- <dependency>-->
  43. <!-- <groupId>io.swagger</groupId>-->
  44. <!-- <artifactId>swagger-annotations</artifactId>-->
  45. <!-- <version>1.5.21</version>-->
  46. <!-- </dependency>-->
  47. <dependency>
  48. <groupId>io.swagger</groupId>
  49. <artifactId>swagger-models</artifactId>
  50. <version>1.5.21</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.xiaoymin</groupId>
  54. <artifactId>swagger-bootstrap-ui</artifactId>
  55. <version>1.9.3</version>
  56. </dependency>
  57. <!-- swagger2-UI-->
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger-ui</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.ruoyi</groupId>
  64. <artifactId>ruoyi-cms</artifactId>
  65. <version>4.4.0</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-boot-starter</artifactId>
  71. <version>3.3.2</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-generator</artifactId>
  76. <version>3.3.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-codec</groupId>
  80. <artifactId>commons-codec</artifactId>
  81. <version>1.6</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-lang3</artifactId>
  86. <version>3.10</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.httpcomponents</groupId>
  90. <artifactId>httpclient</artifactId>
  91. <version>4.5.3</version>
  92. <exclusions>
  93. <exclusion>
  94. <artifactId>commons-codec</artifactId>
  95. <groupId>commons-codec</groupId>
  96. </exclusion>
  97. <exclusion>
  98. <artifactId>httpcore</artifactId>
  99. <groupId>org.apache.httpcomponents</groupId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.httpcomponents</groupId>
  105. <artifactId>httpmime</artifactId>
  106. <version>4.5.2</version>
  107. <exclusions>
  108. <exclusion>
  109. <artifactId>httpclient</artifactId>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.httpcomponents</groupId>
  116. <artifactId>httpcore</artifactId>
  117. <version>4.4.6</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.squareup.okhttp3</groupId>
  121. <artifactId>okhttp</artifactId>
  122. <version>3.10.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.auth0</groupId>
  126. <artifactId>java-jwt</artifactId>
  127. <version>3.2.0</version>
  128. </dependency>
  129. <!-- JWT核心包 -->
  130. <dependency>
  131. <groupId>io.jsonwebtoken</groupId>
  132. <artifactId>jjwt</artifactId>
  133. <version>0.8.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>cn.hutool</groupId>
  137. <artifactId>hutool-all</artifactId>
  138. <version>5.5.1</version>
  139. </dependency>
  140. </dependencies>
  141. </project>