pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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.5.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <url>https://maven.aliyun.com/repository/public</url>
  15. <releases>
  16. <enabled>true</enabled>
  17. </releases>
  18. <snapshots>
  19. <enabled>false</enabled>
  20. </snapshots>
  21. </repository>
  22. </repositories>
  23. <pluginRepositories>
  24. <pluginRepository>
  25. <id>aliyun-plugin</id>
  26. <url>https://maven.aliyun.com/repository/public</url>
  27. <releases>
  28. <enabled>true</enabled>
  29. </releases>
  30. <snapshots>
  31. <enabled>false</enabled>
  32. </snapshots>
  33. </pluginRepository>
  34. </pluginRepositories>
  35. <groupId>com.ye</groupId>
  36. <artifactId>back</artifactId>
  37. <version>0.0.1-SNAPSHOT</version>
  38. <name>education-back</name>
  39. <description>Demo project for Spring Boot</description>
  40. <properties>
  41. <java.version>1.8</java.version>
  42. </properties>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-jdbc</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-devtools</artifactId>
  55. <scope>runtime</scope>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <scope>runtime</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-test</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>junit</groupId>
  75. <artifactId>junit</artifactId>
  76. <version>4.12</version>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-boot-starter</artifactId>
  82. <version>3.4.2</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.shiro</groupId>
  86. <artifactId>shiro-spring</artifactId>
  87. <version>1.4.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-swagger2</artifactId>
  92. <version>2.9.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger-ui</artifactId>
  97. <version>2.9.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-aop</artifactId>
  102. </dependency>
  103. <!-- jwt -->
  104. <dependency>
  105. <groupId>io.jsonwebtoken</groupId>
  106. <artifactId>jjwt</artifactId>
  107. <version>0.9.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>fastjson</artifactId>
  112. <version>1.2.75</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.commons</groupId>
  116. <artifactId>commons-lang3</artifactId>
  117. <version>3.9</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.pagehelper</groupId>
  121. <artifactId>pagehelper-spring-boot-starter</artifactId>
  122. <version>1.3.0</version>
  123. <exclusions>
  124. <exclusion>
  125. <groupId>org.mybatis</groupId>
  126. <artifactId>mybatis</artifactId>
  127. </exclusion>
  128. <exclusion>
  129. <groupId>org.mybatis</groupId>
  130. <artifactId>mybatis-spring</artifactId>
  131. </exclusion>
  132. </exclusions>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.github.jeffreyning</groupId>
  136. <artifactId>mybatisplus-plus</artifactId>
  137. <version>1.3.1-RELEASE</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.baomidou</groupId>
  141. <artifactId>mybatis-plus-generator</artifactId>
  142. <version>3.4.1</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.freemarker</groupId>
  146. <artifactId>freemarker</artifactId>
  147. <version>2.3.32</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.alibaba</groupId>
  151. <artifactId>easyexcel</artifactId>
  152. <version>2.1.6</version>
  153. </dependency>
  154. </dependencies>
  155. <build>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-maven-plugin</artifactId>
  160. <configuration>
  161. <excludes>
  162. <exclude>
  163. <groupId>org.projectlombok</groupId>
  164. <artifactId>lombok</artifactId>
  165. </exclude>
  166. </excludes>
  167. </configuration>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. </project>