pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. <dependency>
  49. <groupId>io.springfox</groupId>
  50. <artifactId>springfox-swagger-ui</artifactId>
  51. <version>2.8.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-swagger2</artifactId>
  56. <version>2.8.0</version>
  57. </dependency>
  58. <!--MyBatis分页插件starter-->
  59. <dependency>
  60. <groupId>com.github.pagehelper</groupId>
  61. <artifactId>pagehelper-spring-boot-starter</artifactId>
  62. <version>${pagehelper-starter.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>fastjson</artifactId>
  67. <version>1.2.73</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-data-redis</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.sf.dozer</groupId>
  75. <artifactId>dozer</artifactId>
  76. <version>5.5.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.baomidou</groupId>
  80. <artifactId>mybatisplus-spring-boot-starter</artifactId>
  81. <version>1.0.5</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus</artifactId>
  86. <version>2.1.8</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>tk.mybatis</groupId>
  90. <artifactId>mapper</artifactId>
  91. <version>3.4.5</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>mysql</groupId>
  95. <artifactId>mysql-connector-java</artifactId>
  96. <version>8.0.19</version>
  97. </dependency>
  98. <!-- <dependency>-->
  99. <!-- <groupId>org.springframework.boot</groupId>-->
  100. <!-- <artifactId>spring-boot-starter-security</artifactId>-->
  101. <!-- </dependency>-->
  102. <!--Token生成与解析-->
  103. <dependency>
  104. <groupId>io.jsonwebtoken</groupId>
  105. <artifactId>jjwt</artifactId>
  106. <version>0.9.1</version>
  107. </dependency>
  108. <!-- 解析客户端操作系统、浏览器等 -->
  109. <dependency>
  110. <groupId>eu.bitwalker</groupId>
  111. <artifactId>UserAgentUtils</artifactId>
  112. <version>${bitwalker.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>jakarta.validation</groupId>
  116. <artifactId>jakarta.validation-api</artifactId>
  117. <version>2.0.2</version>
  118. </dependency>
  119. </dependencies>
  120. </project>