pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <groupId>com.zhentao</groupId>
  6. <artifactId>IM</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>IM</name>
  9. <description>IM</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.google.zxing</groupId>
  19. <artifactId>core</artifactId>
  20. <version>3.5.1</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.zxing</groupId>
  24. <artifactId>javase</artifactId>
  25. <version>3.5.1</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun.oss</groupId>
  29. <artifactId>aliyun-sdk-oss</artifactId>
  30. <version>3.17.4</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.xml.bind</groupId>
  34. <artifactId>jaxb-api</artifactId>
  35. <version>2.3.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.activation</groupId>
  39. <artifactId>activation</artifactId>
  40. <version>1.1.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.jsonwebtoken</groupId>
  44. <artifactId>jjwt</artifactId>
  45. <version>0.9.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.hibernate.validator</groupId>
  49. <artifactId>hibernate-validator</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.redisson</groupId>
  53. <artifactId>redisson</artifactId>
  54. <version>3.12.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-all</artifactId>
  59. <version>5.8.16</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. <version>3.5.4</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-data-redis</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.netty</groupId>
  80. <artifactId>netty-all</artifactId>
  81. <version>4.1.86.Final</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. <optional>true</optional>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>fastjson</artifactId>
  91. <version>1.2.83</version>
  92. </dependency>
  93. <!-- MySQL依赖 -->
  94. <dependency>
  95. <groupId>mysql</groupId>
  96. <artifactId>mysql-connector-java</artifactId>
  97. </dependency>
  98. <!-- Spring Data JPA -->
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-data-jpa</artifactId>
  102. </dependency>
  103. <!-- MongoDB依赖 -->
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-test</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.aliyun.oss</groupId>
  115. <artifactId>aliyun-sdk-oss</artifactId>
  116. <version>3.15.1</version> <!-- 使用最新稳定版本 -->
  117. </dependency>
  118. <!--二维码-->
  119. <dependency>
  120. <groupId>com.belerweb</groupId>
  121. <artifactId>pinyin4j</artifactId>
  122. <version>2.5.0</version>
  123. </dependency>
  124. </dependencies>
  125. <dependencyManagement>
  126. <dependencies>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-dependencies</artifactId>
  130. <version>${spring-boot.version}</version>
  131. <type>pom</type>
  132. <scope>import</scope>
  133. </dependency>
  134. </dependencies>
  135. </dependencyManagement>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-compiler-plugin</artifactId>
  141. <version>3.8.1</version>
  142. <configuration>
  143. <source>1.8</source>
  144. <target>1.8</target>
  145. <encoding>UTF-8</encoding>
  146. </configuration>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-maven-plugin</artifactId>
  151. <version>${spring-boot.version}</version>
  152. <configuration>
  153. <mainClass>com.zhentao.ImApplication</mainClass>
  154. <skip>true</skip>
  155. </configuration>
  156. <executions>
  157. <execution>
  158. <id>repackage</id>
  159. <goals>
  160. <goal>repackage</goal>
  161. </goals>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>