pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>sxgw</name>
  15. <description>sxgw</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.apache.httpcomponents</groupId>
  89. <artifactId>httpclient</artifactId>
  90. <version>4.5.3</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.ulisesbocchio</groupId>
  94. <artifactId>jasypt-spring-boot-starter</artifactId>
  95. <version>3.0.5</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.belerweb</groupId>
  99. <artifactId>pinyin4j</artifactId>
  100. <version>2.5.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.slf4j</groupId>
  104. <artifactId>slf4j-api</artifactId>
  105. <version>1.7.21</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.projectlombok</groupId>
  109. <artifactId>lombok</artifactId>
  110. <scope>provided</scope>
  111. </dependency>
  112. <!-- collections工具类 -->
  113. <dependency>
  114. <groupId>commons-collections</groupId>
  115. <artifactId>commons-collections</artifactId>
  116. <version>3.2.2</version>
  117. </dependency>
  118. <!-- io常用工具类 -->
  119. <dependency>
  120. <groupId>commons-io</groupId>
  121. <artifactId>commons-io</artifactId>
  122. <version>2.11.0</version>
  123. </dependency>
  124. <!-- 阿里JSON解析器 -->
  125. <dependency>
  126. <groupId>com.alibaba.fastjson2</groupId>
  127. <artifactId>fastjson2</artifactId>
  128. <version>2.0.12</version>
  129. </dependency>
  130. <!-- hutool 工具 -->
  131. <dependency>
  132. <groupId>cn.hutool</groupId>
  133. <artifactId>hutool-all</artifactId>
  134. <version>5.8.16</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.bouncycastle</groupId>
  138. <artifactId>bcprov-jdk15to18</artifactId>
  139. <version>1.73</version>
  140. </dependency>
  141. <!--常用工具类 -->
  142. <dependency>
  143. <groupId>org.apache.commons</groupId>
  144. <artifactId>commons-lang3</artifactId>
  145. </dependency>
  146. <!-- Token生成与解析-->
  147. <dependency>
  148. <groupId>io.jsonwebtoken</groupId>
  149. <artifactId>jjwt</artifactId>
  150. <version>0.9.1</version>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-maven-plugin</artifactId>
  158. <version>2.1.1.RELEASE</version>
  159. <configuration>
  160. <includeSystemScope>true</includeSystemScope>
  161. </configuration>
  162. <executions>
  163. <execution>
  164. <goals>
  165. <goal>repackage</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. </project>