pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <dependency>
  22. <groupId>com.github.qcloudsms</groupId>
  23. <artifactId>qcloudsms</artifactId>
  24. <version>${tencent.qcloudsms.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-aop</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpclient</artifactId>
  33. <version>4.5.10</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.google.code.gson</groupId>
  37. <artifactId>gson</artifactId>
  38. <version>2.8.7</version>
  39. </dependency>
  40. <!-- 数据库驱动 -->
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. </dependency>
  45. <!-- lombok -->
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <!-- mybatis-plus -->
  51. <!-- mybatis-plus 是自己开发,并非官方的! -->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. <version>3.0.5</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-web</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.junit.vintage</groupId>
  68. <artifactId>junit-vintage-engine</artifactId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-web</artifactId>
  75. <version>5.3.22</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  78. <dependency>
  79. <groupId>org.eclipse.jgit</groupId>
  80. <artifactId>org.eclipse.jgit</artifactId>
  81. <version>5.4.3.201909031940-r</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-configuration-processor</artifactId>
  86. <optional>true</optional>
  87. </dependency>
  88. <!-- redis -->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-data-redis</artifactId>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>io.lettuce</groupId>
  95. <artifactId>lettuce-core</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>redis.clients</groupId>
  101. <artifactId>jedis</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. <version>2.9.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger-ui</artifactId>
  111. <version>2.9.2</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.velocity</groupId>
  115. <artifactId>velocity-engine-core</artifactId>
  116. <version>2.0</version>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>