pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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>io.netty</groupId>
  19. <artifactId>netty-all</artifactId>
  20. <version>4.1.85.Final</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba.fastjson2</groupId>
  24. <artifactId>fastjson2</artifactId>
  25. <version>2.0.18</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>org.projectlombok</groupId>
  80. <artifactId>lombok</artifactId>
  81. <version>1.18.20</version>
  82. <scope>provided</scope>
  83. </dependency>
  84. <!-- MySQL依赖 -->
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. </dependency>
  89. <!-- Spring Data JPA -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-data-jpa</artifactId>
  93. </dependency>
  94. <!-- MongoDB依赖 -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-test</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. </dependencies>
  105. <dependencyManagement>
  106. <dependencies>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-dependencies</artifactId>
  110. <version>${spring-boot.version}</version>
  111. <type>pom</type>
  112. <scope>import</scope>
  113. </dependency>
  114. </dependencies>
  115. </dependencyManagement>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <version>3.8.1</version>
  122. <configuration>
  123. <source>1.8</source>
  124. <target>1.8</target>
  125. <encoding>UTF-8</encoding>
  126. </configuration>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. <version>${spring-boot.version}</version>
  132. <configuration>
  133. <mainClass>com.zhentao.ImApplication</mainClass>
  134. <skip>true</skip>
  135. </configuration>
  136. <executions>
  137. <execution>
  138. <id>repackage</id>
  139. <goals>
  140. <goal>repackage</goal>
  141. </goals>
  142. </execution>
  143. </executions>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>