pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.chuanghai.smartschool</groupId>
  12. <artifactId>tuition_payment</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>tuition_payment</name>
  15. <description>学费以及杂费缴费项目</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.springframework.boot</groupId>
  26. <artifactId>spring-boot-devtools</artifactId>
  27. <scope>runtime</scope>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. <scope>runtime</scope>
  34. </dependency>
  35. <!-- mybatis plus -->
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-boot-starter</artifactId>
  39. <version>3.2.0</version>
  40. </dependency>
  41. <!-- &lt;!&ndash; 集成easypoi组件 .导出excel http://easypoi.mydoc.io/ &ndash;&gt;-->
  42. <!-- <dependency>-->
  43. <!-- <groupId>cn.afterturn</groupId>-->
  44. <!-- <artifactId>easypoi-base</artifactId>-->
  45. <!-- <version>3.2.0</version>-->
  46. <!-- </dependency>-->
  47. <!-- <dependency>-->
  48. <!-- <groupId>cn.afterturn</groupId>-->
  49. <!-- <artifactId>easypoi-web</artifactId>-->
  50. <!-- <version>3.2.0</version>-->
  51. <!-- </dependency>-->
  52. <!-- <dependency>-->
  53. <!-- <groupId>cn.afterturn</groupId>-->
  54. <!-- <artifactId>easypoi-annotation</artifactId>-->
  55. <!-- <version>3.2.0</version>-->
  56. <!-- </dependency>-->
  57. <!-- jwt -->
  58. <dependency>
  59. <groupId>io.jsonwebtoken</groupId>
  60. <artifactId>jjwt-api</artifactId>
  61. <version>0.10.7</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.jsonwebtoken</groupId>
  65. <artifactId>jjwt-impl</artifactId>
  66. <version>0.10.7</version>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt-jackson</artifactId>
  72. <version>0.10.7</version>
  73. <scope>runtime</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.assertj</groupId>
  77. <artifactId>assertj-core</artifactId>
  78. <version>3.16.1</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. <!-- 数据校验 -->
  82. <dependency>
  83. <groupId>org.hibernate</groupId>
  84. <artifactId>hibernate-validator</artifactId>
  85. <version>6.1.5.Final</version>
  86. </dependency>
  87. <!-- aop -->
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-aop</artifactId>
  91. </dependency>
  92. <!-- excel操作 -->
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>easyexcel</artifactId>
  96. <version>2.2.10</version>
  97. </dependency>
  98. <!-- 建行支付工具类 -->
  99. <!-- <dependency>-->
  100. <!-- <groupId>com.ccb.pay</groupId>-->
  101. <!-- <artifactId>netpay</artifactId>-->
  102. <!-- <version>0.0.1</version>-->
  103. <!-- </dependency>-->
  104. <!-- 密码加密 -->
  105. <dependency>
  106. <groupId>org.springframework.security</groupId>
  107. <artifactId>spring-security-crypto</artifactId>
  108. <version>5.4.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-configuration-processor</artifactId>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.projectlombok</groupId>
  117. <artifactId>lombok</artifactId>
  118. <optional>true</optional>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-starter-test</artifactId>
  123. <scope>test</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.alibaba</groupId>
  127. <artifactId>fastjson</artifactId>
  128. <version>1.2.57</version>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. <configuration>
  137. <excludes>
  138. <exclude>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. </exclude>
  142. </excludes>
  143. </configuration>
  144. </plugin>
  145. <!-- smart doc -->
  146. <plugin>
  147. <groupId>com.github.shalousun</groupId>
  148. <artifactId>smart-doc-maven-plugin</artifactId>
  149. <version>2.1.4</version>
  150. <configuration>
  151. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  152. <configFile>./src/main/resources/smart-doc.json</configFile>
  153. <!--指定项目名称-->
  154. <projectName>学费缴纳项目</projectName>
  155. </configuration>
  156. <executions>
  157. <execution>
  158. <!--如果不需要在执行编译时启动smart-doc,则将phase注释掉-->
  159. <phase>compile</phase>
  160. <goals>
  161. <!--smart-doc提供了html、openapi、markdown等goal,可按需配置-->
  162. <goal>html</goal>
  163. </goals>
  164. </execution>
  165. </executions>
  166. </plugin>
  167. </plugins>
  168. </build>
  169. </project>