pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.6.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.huimv</groupId>
  12. <artifactId>wine-server</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>wine-server</name>
  15. <properties>
  16. <java.version>8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-websocket</artifactId>
  22. <version>2.3.1.RELEASE</version>
  23. </dependency>
  24. <!--生成二维码-->
  25. <dependency>
  26. <groupId>com.google.zxing</groupId>
  27. <artifactId>core</artifactId>
  28. <version>3.4.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.google.zxing</groupId>
  32. <artifactId>javase</artifactId>
  33. <version>3.4.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>fastjson</artifactId>
  38. <version>1.2.78</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-generator</artifactId>
  43. <!-- <version>3.3.1.tmp</version>-->
  44. <version>3.3.2</version>
  45. </dependency>
  46. <!--mybits-plus-->
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <!-- <version>3.4.2</version>-->
  51. <version>3.4.3.4</version>
  52. </dependency>
  53. <!-- mybatis-plus-extension -->
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-extension</artifactId>
  57. <version>3.5.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-jdbc</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-web</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.github.mingyang66</groupId>
  69. <artifactId>oceansky-jwt</artifactId>
  70. <version>4.3.2</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.dustlight.captcha</groupId>
  84. <artifactId>redis-store</artifactId>
  85. <version>0.0.6</version>
  86. </dependency>
  87. <!-- mysql -->
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>cn.hutool</groupId>
  94. <artifactId>hutool-all</artifactId>
  95. <version>5.8.5</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.wechatpay-apiv3</groupId>
  99. <artifactId>wechatpay-java</artifactId>
  100. <version>0.2.10</version>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <configuration>
  109. <excludes>
  110. <exclude>
  111. <groupId>org.projectlombok</groupId>
  112. <artifactId>lombok</artifactId>
  113. </exclude>
  114. </excludes>
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>