## Feat - 支付依赖
This commit is contained in:
parent
d9e9589d70
commit
2044185ae3
23
pom.xml
23
pom.xml
|
@ -47,6 +47,7 @@
|
||||||
<xxl-job.version>2.3.0</xxl-job.version>
|
<xxl-job.version>2.3.0</xxl-job.version>
|
||||||
<huifu-new.version>3.0.19</huifu-new.version>
|
<huifu-new.version>3.0.19</huifu-new.version>
|
||||||
<alipay.version>4.40.33.ALL</alipay.version>
|
<alipay.version>4.40.33.ALL</alipay.version>
|
||||||
|
<bouncycastle.version>1.60</bouncycastle.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<!-- 依赖声明 -->
|
<!-- 依赖声明 -->
|
||||||
|
@ -314,6 +315,17 @@
|
||||||
<version>${huifu-new.version}</version>
|
<version>${huifu-new.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcprov-jdk15on</artifactId>
|
||||||
|
<version>${bouncycastle.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcpkix-jdk15on</artifactId>
|
||||||
|
<version>${bouncycastle.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- <!– 支付宝对接SDK –>-->
|
<!-- <!– 支付宝对接SDK –>-->
|
||||||
<!-- <dependency>-->
|
<!-- <dependency>-->
|
||||||
<!-- <groupId>com.alipay.sdk</groupId>-->
|
<!-- <groupId>com.alipay.sdk</groupId>-->
|
||||||
|
@ -393,6 +405,17 @@
|
||||||
<encoding>${project.build.sourceEncoding}</encoding>
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<encoding>UTF-8</encoding>
|
||||||
|
<nonFilteredFileExtensions>
|
||||||
|
<nonFilteredFileExtension>pfx</nonFilteredFileExtension>
|
||||||
|
<nonFilteredFileExtension>cer</nonFilteredFileExtension>
|
||||||
|
</nonFilteredFileExtensions>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
<resources>
|
<resources>
|
||||||
|
|
Loading…
Reference in New Issue