pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.cdu.lys.graduation</groupId>
  7. <artifactId>EOrder</artifactId>
  8. <packaging>jar</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.5.6</version>
  14. <relativePath/>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>8</maven.compiler.source>
  19. <maven.compiler.target>8</maven.compiler.target>
  20. <junit.version>4.10</junit.version>
  21. <log4j.version>1.2.12</log4j.version>
  22. <lombok.version>1.16.18</lombok.version>
  23. <mysql.version>8.0.33</mysql.version>
  24. <druid.version>1.1.16</druid.version>
  25. <mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version>
  26. <fastjson.version>1.2.75</fastjson.version>
  27. <swagger.version>2.9.2</swagger.version>
  28. </properties>
  29. <dependencies>
  30. <!--spring boot 2.2.2-->
  31. <!--<dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-dependencies</artifactId>
  34. <version>2.5.6</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>-->
  38. <!--<dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter</artifactId>
  41. </dependency>-->
  42. <dependency>
  43. <groupId>mysql</groupId>
  44. <artifactId>mysql-connector-java</artifactId>
  45. <version>${mysql.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid</artifactId>
  50. <version>${druid.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mybatis.spring.boot</groupId>
  54. <artifactId>mybatis-spring-boot-starter</artifactId>
  55. <version>${mybatis.spring.boot.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>junit</groupId>
  59. <artifactId>junit</artifactId>
  60. <version>${junit.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>log4j</groupId>
  64. <artifactId>log4j</artifactId>
  65. <version>${log4j.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. <version>${lombok.version}</version>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>${fastjson.version}</version>
  77. </dependency>
  78. <!-- swagger -->
  79. <dependency>
  80. <groupId>io.springfox</groupId>
  81. <artifactId>springfox-swagger2</artifactId>
  82. <version>${swagger.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-swagger-ui</artifactId>
  87. <version>${swagger.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.commons</groupId>
  91. <artifactId>commons-lang3</artifactId>
  92. <version>3.9</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-io</groupId>
  96. <artifactId>commons-io</artifactId>
  97. <version>2.8.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.github.pagehelper</groupId>
  101. <artifactId>pagehelper-spring-boot-starter</artifactId>
  102. <version>1.3.0</version>
  103. <exclusions>
  104. <exclusion>
  105. <groupId>org.mybatis.spring.boot</groupId>
  106. <artifactId>mybatis-spring-boot-starter</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <!-- <dependency>
  111. <groupId>commons-fileupload</groupId>
  112. <artifactId>commons-fileupload</artifactId>
  113. <version>1.3.3</version>
  114. </dependency>-->
  115. <dependency>
  116. <groupId>com.alibaba</groupId>
  117. <artifactId>easyexcel</artifactId>
  118. <version>2.2.7</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>io.jsonwebtoken</groupId>
  122. <artifactId>jjwt</artifactId>
  123. <version>0.9.1</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.auth0</groupId>
  127. <artifactId>java-jwt</artifactId>
  128. <version>3.4.0</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.mybatis.generator</groupId>
  132. <artifactId>mybatis-generator-core</artifactId>
  133. <version>1.3.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter-web</artifactId>
  138. <version>2.5.6</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-starter-data-redis</artifactId>
  143. <version>2.5.6</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.mindrot</groupId>
  147. <artifactId>jbcrypt</artifactId>
  148. <version>0.4</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.alibaba</groupId>
  152. <artifactId>druid-spring-boot-starter</artifactId>
  153. <version>1.1.10</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.httpcomponents</groupId>
  157. <artifactId>httpclient</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>commons-codec</groupId>
  161. <artifactId>commons-codec</artifactId>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.springframework</groupId>
  165. <artifactId>spring-web</artifactId>
  166. <version>5.3.12</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-starter-validation</artifactId>
  171. <version>2.5.6</version>
  172. </dependency>
  173. </dependencies>
  174. <build>
  175. <finalName>${project.artifactId}</finalName>
  176. <plugins>
  177. <plugin>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-maven-plugin</artifactId>
  180. <configuration>
  181. <!-- <fork>true</fork> &lt;!&ndash; 如果没有该配置,devtools不会生效 &ndash;&gt;-->
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. <!-- <resources>
  186. <resource>
  187. <directory>src/main/resources</directory>
  188. <filtering>true</filtering>
  189. &lt;!&ndash; <includes>&ndash;&gt;
  190. &lt;!&ndash; <include>application.yml</include>&ndash;&gt;
  191. &lt;!&ndash; <include>application-${spring.profiles.active}.yml</include>&ndash;&gt;
  192. &lt;!&ndash; <include>**/*.xml</include>&ndash;&gt;
  193. &lt;!&ndash; </includes>&ndash;&gt;
  194. </resource>
  195. </resources>-->
  196. </build>
  197. </project>