pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.video</groupId>
  12. <artifactId>mybatis_plus</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>mybatis_plus</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <tencent.qcloudsms.version>1.0.6</tencent.qcloudsms.version>
  19. </properties>
  20. <dependencies>
  21. <!-- fastjson -->
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>fastjson</artifactId>
  25. <version>2.0.12</version>
  26. </dependency>
  27. <!--引入JWT-->
  28. <dependency>
  29. <groupId>com.auth0</groupId>
  30. <artifactId>java-jwt</artifactId>
  31. <version>3.10.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.jsonwebtoken</groupId>
  35. <artifactId>jjwt</artifactId>
  36. <version>0.9.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.qcloudsms</groupId>
  40. <artifactId>qcloudsms</artifactId>
  41. <version>${tencent.qcloudsms.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.tencentcloudapi</groupId>
  45. <artifactId>tencentcloud-sdk-java</artifactId>
  46. <version>3.1.742</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-aop</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpclient</artifactId>
  55. <version>4.5.10</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.code.gson</groupId>
  59. <artifactId>gson</artifactId>
  60. <version>2.8.7</version>
  61. </dependency>
  62. <!-- 数据库驱动 -->
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. </dependency>
  67. <!-- lombok -->
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. </dependency>
  72. <!-- mybatis-plus -->
  73. <!-- mybatis-plus 是自己开发,并非官方的! -->
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus-boot-starter</artifactId>
  77. <version>3.0.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-web</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <scope>test</scope>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>org.junit.vintage</groupId>
  90. <artifactId>junit-vintage-engine</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-web</artifactId>
  97. <version>5.3.22</version>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  100. <dependency>
  101. <groupId>org.eclipse.jgit</groupId>
  102. <artifactId>org.eclipse.jgit</artifactId>
  103. <version>5.4.3.201909031940-r</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-configuration-processor</artifactId>
  108. <optional>true</optional>
  109. </dependency>
  110. <!-- redis -->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-data-redis</artifactId>
  114. <exclusions>
  115. <exclusion>
  116. <groupId>io.lettuce</groupId>
  117. <artifactId>lettuce-core</artifactId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <dependency>
  122. <groupId>redis.clients</groupId>
  123. <artifactId>jedis</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>io.springfox</groupId>
  127. <artifactId>springfox-swagger2</artifactId>
  128. <version>2.9.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>io.springfox</groupId>
  132. <artifactId>springfox-swagger-ui</artifactId>
  133. <version>2.9.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.velocity</groupId>
  137. <artifactId>velocity-engine-core</artifactId>
  138. <version>2.0</version>
  139. </dependency>
  140. </dependencies>
  141. <build>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-maven-plugin</artifactId>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>