pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.project</groupId>
  12. <artifactId>sxgw-pad</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>sxgw-pad</name>
  15. <description>sxgw-pad</description>
  16. <packaging>jar</packaging>
  17. <dependencies>
  18. <!-- SpringBoot的依赖配置-->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-dependencies</artifactId>
  22. <version>2.5.14</version>
  23. <type>pom</type>
  24. <scope>import</scope>
  25. </dependency>
  26. <!-- mybatis-plus 增强CRUD -->
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. <version>3.5.3</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-jdbc</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>sgcc.nds</groupId>
  46. <artifactId>sgjdbc</artifactId>
  47. <version>4.3.21.1</version>
  48. <scope>system</scope>
  49. <!-- <systemPath>${pom.basedir}/lib/sgjdbc-V4.3.21.1-build-20220215.2653.jar</systemPath>-->
  50. <systemPath>${pom.basedir}/lib/sgjdbc-V4.3.21.1-build-20221031.3362.jar</systemPath>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-web-services</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mybatis.spring.boot</groupId>
  58. <artifactId>mybatis-spring-boot-starter</artifactId>
  59. <version>2.2.0</version>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-logging</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <scope>runtime</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-test</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.bouncycastle</groupId>
  79. <artifactId>bcprov-jdk15on</artifactId>
  80. <version>1.68</version>
  81. </dependency>
  82. <dependency>
  83. <groupId> org.springframework.boot </groupId>
  84. <artifactId>spring-boot-configuration-processor</artifactId>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-security</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.httpcomponents</groupId>
  93. <artifactId>httpclient</artifactId>
  94. <version>4.5.3</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.github.ulisesbocchio</groupId>
  98. <artifactId>jasypt-spring-boot-starter</artifactId>
  99. <version>3.0.5</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>cn.dev33</groupId>
  103. <artifactId>sa-token-spring-boot-starter</artifactId>
  104. <version>1.40.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.belerweb</groupId>
  108. <artifactId>pinyin4j</artifactId>
  109. <version>2.5.1</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.slf4j</groupId>
  113. <artifactId>slf4j-api</artifactId>
  114. <version>1.7.21</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.projectlombok</groupId>
  118. <artifactId>lombok</artifactId>
  119. <scope>provided</scope>
  120. </dependency>
  121. <!-- collections工具类 -->
  122. <dependency>
  123. <groupId>commons-collections</groupId>
  124. <artifactId>commons-collections</artifactId>
  125. <version>3.2.2</version>
  126. </dependency>
  127. <!-- io常用工具类 -->
  128. <dependency>
  129. <groupId>commons-io</groupId>
  130. <artifactId>commons-io</artifactId>
  131. <version>2.11.0</version>
  132. </dependency>
  133. <!-- 阿里JSON解析器 -->
  134. <dependency>
  135. <groupId>com.alibaba.fastjson2</groupId>
  136. <artifactId>fastjson2</artifactId>
  137. <version>2.0.12</version>
  138. </dependency>
  139. <!-- hutool 工具 -->
  140. <dependency>
  141. <groupId>cn.hutool</groupId>
  142. <artifactId>hutool-all</artifactId>
  143. <version>5.8.16</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.bouncycastle</groupId>
  147. <artifactId>bcprov-jdk15to18</artifactId>
  148. <version>1.73</version>
  149. </dependency>
  150. <!--常用工具类 -->
  151. <dependency>
  152. <groupId>org.apache.commons</groupId>
  153. <artifactId>commons-lang3</artifactId>
  154. </dependency>
  155. <!-- Token生成与解析-->
  156. <dependency>
  157. <groupId>io.jsonwebtoken</groupId>
  158. <artifactId>jjwt</artifactId>
  159. <version>0.9.1</version>
  160. </dependency>
  161. </dependencies>
  162. <build>
  163. <plugins>
  164. <plugin>
  165. <groupId>org.springframework.boot</groupId>
  166. <artifactId>spring-boot-maven-plugin</artifactId>
  167. <version>2.1.1.RELEASE</version>
  168. <configuration>
  169. <includeSystemScope>true</includeSystemScope>
  170. </configuration>
  171. <executions>
  172. <execution>
  173. <goals>
  174. <goal>repackage</goal>
  175. </goals>
  176. </execution>
  177. </executions>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. </project>