pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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>org.example</groupId>
  6. <artifactId>UtilsDemo-WX</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <parent>
  9. <groupId>org.example</groupId>
  10. <artifactId>UtilsDemo</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. </parent>
  13. <name>UtilsDemo-WX</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <binarywang.weixin.version>3.1.0</binarywang.weixin.version>
  17. <pagehelper-starter.version>1.2.10</pagehelper-starter.version>
  18. <bitwalker.version>1.21</bitwalker.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.commons</groupId>
  27. <artifactId>commons-lang3</artifactId>
  28. <version>3.10</version>
  29. </dependency>
  30. <!-- weixin-java-mp -->
  31. <dependency>
  32. <groupId>com.github.binarywang</groupId>
  33. <artifactId>weixin-java-mp</artifactId>
  34. <version>${binarywang.weixin.version}</version>
  35. </dependency>
  36. <!-- weixin-java-pay -->
  37. <dependency>
  38. <groupId>com.github.binarywang</groupId>
  39. <artifactId>weixin-java-pay</artifactId>
  40. <version>${binarywang.weixin.version}</version>
  41. </dependency>
  42. <!-- weixin-java-miniapp -->
  43. <dependency>
  44. <groupId>com.github.binarywang</groupId>
  45. <artifactId>weixin-java-miniapp</artifactId>
  46. <version>${binarywang.weixin.version}</version>
  47. </dependency>
  48. <!-- alipay-sdk-java -->
  49. <dependency>
  50. <groupId>com.alipay.sdk</groupId>
  51. <artifactId>alipay-sdk-java</artifactId>
  52. <version>3.4.27.ALL</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-swagger-ui</artifactId>
  57. <version>2.8.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger2</artifactId>
  62. <version>2.8.0</version>
  63. </dependency>
  64. <!--MyBatis分页插件starter-->
  65. <dependency>
  66. <groupId>com.github.pagehelper</groupId>
  67. <artifactId>pagehelper-spring-boot-starter</artifactId>
  68. <version>${pagehelper-starter.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. <version>1.2.73</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-data-redis</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>net.sf.dozer</groupId>
  81. <artifactId>dozer</artifactId>
  82. <version>5.5.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatisplus-spring-boot-starter</artifactId>
  87. <version>1.0.5</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus</artifactId>
  92. <version>2.1.8</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>tk.mybatis</groupId>
  96. <artifactId>mapper</artifactId>
  97. <version>3.4.5</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <version>8.0.19</version>
  103. </dependency>
  104. <!-- <dependency>-->
  105. <!-- <groupId>org.springframework.boot</groupId>-->
  106. <!-- <artifactId>spring-boot-starter-security</artifactId>-->
  107. <!-- </dependency>-->
  108. <!--Token生成与解析-->
  109. <dependency>
  110. <groupId>io.jsonwebtoken</groupId>
  111. <artifactId>jjwt</artifactId>
  112. <version>0.9.1</version>
  113. </dependency>
  114. <!-- 解析客户端操作系统、浏览器等 -->
  115. <dependency>
  116. <groupId>eu.bitwalker</groupId>
  117. <artifactId>UserAgentUtils</artifactId>
  118. <version>${bitwalker.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>jakarta.validation</groupId>
  122. <artifactId>jakarta.validation-api</artifactId>
  123. <version>2.0.2</version>
  124. </dependency>
  125. </dependencies>
  126. </project>