毕设
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 5.2KB

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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.ly</groupId>
  12. <artifactId>springboot_vue</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>springboot_vue</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.mybatis.spring.boot</groupId>
  26. <artifactId>mybatis-spring-boot-starter</artifactId>
  27. <version>2.2.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <!-- 邮箱依赖-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-mail</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <!-- 代码生成器 -->
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-generator</artifactId>
  48. <version>3.5.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.velocity</groupId>
  52. <artifactId>velocity</artifactId>
  53. <version>1.7</version>
  54. </dependency>
  55. <!-- websocket -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-websocket</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <!--解决配置文件注解问题-->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-configuration-processor</artifactId>
  69. </dependency>
  70. <!--mp依赖-->
  71. <dependency>
  72. <groupId>com.baomidou</groupId>
  73. <artifactId>mybatis-plus-boot-starter</artifactId>
  74. <version>3.4.3</version>
  75. </dependency>
  76. <!--druid依赖-->
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>druid-spring-boot-starter</artifactId>
  80. <version>1.2.6</version>
  81. </dependency>
  82. <!--hutool工具-->
  83. <dependency>
  84. <groupId>cn.hutool</groupId>
  85. <artifactId>hutool-all</artifactId>
  86. <version>5.8.5</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.poi</groupId>
  90. <artifactId>poi-ooxml</artifactId>
  91. <version>4.1.2</version>
  92. </dependency>
  93. <!-- JWT依赖 -->
  94. <dependency>
  95. <groupId>com.auth0</groupId>
  96. <artifactId>java-jwt</artifactId>
  97. <version>3.4.0</version>
  98. </dependency>
  99. <!--redis-->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-data-redis</artifactId>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <configuration>
  111. <excludes>
  112. <exclude>
  113. <groupId>org.projectlombok</groupId>
  114. <artifactId>lombok</artifactId>
  115. </exclude>
  116. </excludes>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. <repositories>
  122. <repository>
  123. <id>nexus-aliyun</id>
  124. <name>nexus-aliyun</name>
  125. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  126. <releases>
  127. <enabled>true</enabled>
  128. </releases>
  129. <snapshots>
  130. <enabled>false</enabled>
  131. </snapshots>
  132. </repository>
  133. </repositories>
  134. <pluginRepositories>
  135. <pluginRepository>
  136. <id>public</id>
  137. <name>aliyun nexus</name>
  138. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  139. <releases>
  140. <enabled>true</enabled>
  141. </releases>
  142. <snapshots>
  143. <enabled>false</enabled>
  144. </snapshots>
  145. </pluginRepository>
  146. </pluginRepositories>
  147. </project>