pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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>cn.dulx</groupId>
  12. <artifactId>dc</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>general_query</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <!-- 开放平台 SDK -->
  19. <oauth-client.version>2.4.2-RELEASE</oauth-client.version>
  20. <oauth-crypto.version>1.0.0-SNAPSHOT</oauth-crypto.version>
  21. <!-- 开放平台入参加密的包-->
  22. <process-client.version>1.0.2-RELEASE</process-client.version>
  23. <!-- <encryptor-starter.version>1.7.7-RELEASE</encryptor-starter.version>-->
  24. <sgsm.version>1.0</sgsm.version>
  25. <!-- 开放平台 SDK 依赖的 commons 工具包 -->
  26. <commons-codec.version>1.15</commons-codec.version>
  27. <commons-lang3.version>3.12.0</commons-lang3.version>
  28. <commons-collections4.version>4.4</commons-collections4.version>
  29. <commons-io.version>2.11.0</commons-io.version>
  30. <skipTests>true</skipTests>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-web</artifactId>
  50. </dependency>
  51. <!-- 入参加密所使用的依赖包-->
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.83</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.bouncycastle</groupId>
  59. <artifactId>bcprov-jdk16</artifactId>
  60. <version>1.46</version>
  61. </dependency>
  62. <!-- 开放平台 SDK 依赖的 commons 工具包 -->
  63. <dependency>
  64. <groupId>commons-codec</groupId>
  65. <artifactId>commons-codec</artifactId>
  66. <version>${commons-codec.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-lang3</artifactId>
  71. <version>${commons-lang3.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-collections4</artifactId>
  76. <version>${commons-collections4.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. <version>${commons-io.version}</version>
  82. </dependency>
  83. <!-- 开放平台 SDK -->
  84. <dependency>
  85. <groupId>com.sgcc.dlsc</groupId>
  86. <artifactId>px-common-defense-oauth-client-web</artifactId>
  87. <version>${oauth-client.version}</version>
  88. <scope>system</scope>
  89. <systemPath>${pom.basedir}/lib/px-common-defense-oauth-client-web-${oauth-client.version}.jar
  90. </systemPath>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.sgcc.dlsc</groupId>
  94. <artifactId>px-common-defense-oauth-common</artifactId>
  95. <version>${oauth-client.version}</version>
  96. <scope>system</scope>
  97. <systemPath>${pom.basedir}/lib/px-common-defense-oauth-common-${oauth-client.version}.jar</systemPath>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.sgcc.dlsc</groupId>
  101. <artifactId>dlsc-common-crypto</artifactId>
  102. <version>${oauth-crypto.version}</version>
  103. <scope>system</scope>
  104. <systemPath>${pom.basedir}/lib/dlsc-common-crypto-${oauth-crypto.version}.jar</systemPath>
  105. </dependency>
  106. <!-- 开放平台入参加密的包-->
  107. <dependency>
  108. <groupId>com.sgcc.dlsc</groupId>
  109. <artifactId>common-packet-process</artifactId>
  110. <version>${process-client.version}</version>
  111. <scope>system</scope>
  112. <systemPath>${pom.basedir}/lib/common-packet-process-${process-client.version}.jar</systemPath>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.sgcc.dlsc</groupId>
  116. <artifactId>sgsm</artifactId>
  117. <version>${sgsm.version}</version>
  118. <scope>system</scope>
  119. <systemPath>${pom.basedir}/lib/sgsm-${sgsm.version}.jar</systemPath>
  120. </dependency>
  121. <!-- GSON-->
  122. <dependency>
  123. <groupId>com.google.code.gson</groupId>
  124. <artifactId>gson</artifactId>
  125. <version>2.9.1</version>
  126. </dependency>
  127. <!-- Jackson -->
  128. <dependency>
  129. <groupId>com.fasterxml.jackson.core</groupId>
  130. <artifactId>jackson-databind</artifactId>
  131. <version>2.15.2</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.github.sisyphsu</groupId>
  135. <artifactId>dateparser</artifactId>
  136. <version>1.0.11</version>
  137. </dependency>
  138. </dependencies>
  139. <build>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-maven-plugin</artifactId>
  144. <configuration>
  145. <!--引入外部jar包 并配置 无此项外部jar打包时无法引入包中 -->
  146. <includeSystemScope>true</includeSystemScope>
  147. </configuration>
  148. </plugin>
  149. </plugins>
  150. <finalName>general_query</finalName>
  151. </build>
  152. </project>