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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example.course</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. </properties>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.3.2.RELEASE</version>
  19. <!-- 使用合适的版本 -->
  20. </parent>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <version>2.3.2.RELEASE</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <version>2.3.2.RELEASE</version>
  31. </dependency>
  32. <!-- mysql -->
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. <version>8.0.33</version>
  37. </dependency>
  38. <!-- mybatis-plus -->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. <version>3.5.4</version>
  43. </dependency>
  44. <!-- lombok -->
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <version>1.18.30</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. <version>5.8.16</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-validation</artifactId>
  58. <version>2.3.2.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>druid</artifactId>
  63. <version>1.1.23</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.minio</groupId>
  67. <artifactId>minio</artifactId>
  68. <version>7.1.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.jsonwebtoken</groupId>
  72. <artifactId>jjwt</artifactId>
  73. <version>0.9.1</version>
  74. </dependency>
  75. <!-- Redis-->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-data-redis</artifactId>
  79. <version>2.3.2.RELEASE</version>
  80. </dependency>
  81. <!-- redisson分布式锁-->
  82. <dependency>
  83. <groupId>org.redisson</groupId>
  84. <artifactId>redisson</artifactId>
  85. <version>3.14.1</version>
  86. </dependency>
  87. <!-- 切面-->
  88. <!-- <dependency>-->
  89. <!-- <groupId>org.aspectj</groupId>-->
  90. <!-- <artifactId>aspectjweaver</artifactId>-->
  91. <!-- <version>1.9.19</version>-->
  92. <!-- </dependency>-->
  93. <!-- okhttp-->
  94. <dependency>
  95. <groupId>com.squareup.okhttp3</groupId>
  96. <artifactId>okhttp</artifactId>
  97. <version>4.9.3</version>
  98. </dependency>
  99. <!-- fastjson-->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>2.0.41</version>
  104. </dependency>
  105. <!-- commons-lang3 -->
  106. <dependency>
  107. <groupId>org.apache.commons</groupId>
  108. <artifactId>commons-lang3</artifactId>
  109. <version>3.17.0</version>
  110. </dependency>
  111. <!-- netty-all-->
  112. <dependency>
  113. <groupId>io.netty</groupId>
  114. <artifactId>netty-all</artifactId>
  115. <version>4.1.84.Final</version>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-compiler-plugin</artifactId>
  123. <configuration>
  124. <source>8</source>
  125. <target>8</target>
  126. </configuration>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>