Skip to content

Commit 54f4ffa

Browse files
committed
2.12.9发布
1 parent 1f1a429 commit 54f4ffa

File tree

14 files changed

+25
-24
lines changed

14 files changed

+25
-24
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>com.egzosn</groupId>
2323
<artifactId>{module-name}</artifactId>
24-
<version>2.12.8</version>
24+
<version>2.12.9</version>
2525
</dependency>
2626

2727
```

pay-java-ali/pom.xml

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>pay-java-ali</artifactId>
@@ -19,12 +19,6 @@
1919
<artifactId>pay-java-common</artifactId>
2020
</dependency>
2121
<!-- /pay-java -->
22-
<!--
23-
<dependency>
24-
<groupId>org.bouncycastle</groupId>
25-
<artifactId>bcprov-jdk15on</artifactId>
26-
<version>1.54</version>
27-
</dependency>-->
2822

2923
</dependencies>
3024

pay-java-common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>jar</packaging>

pay-java-common/src/main/java/com/egzosn/pay/common/api/PayMessageRouter.java

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ public PayMessageRouterRule rule() {
124124
* 处理支付消息
125125
*
126126
* @param payMessage 支付消息
127+
* @param storage 支付配置
127128
* @return 支付输出结果
128129
*/
129130
public PayOutMessage route(Map<String, Object> payMessage, PayConfigStorage storage) {

pay-java-common/src/main/java/com/egzosn/pay/common/api/PayService.java

+6
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public interface PayService<PC extends PayConfigStorage> {
8686
*
8787
* @param order 支付订单
8888
* @return 订单信息
89+
* @param <O> 预订单类型
8990
* @see PayOrder 支付订单信息
9091
*/
9192
<O extends PayOrder>Map<String, Object> orderInfo(O order);
@@ -94,6 +95,7 @@ public interface PayService<PC extends PayConfigStorage> {
9495
* 页面转跳支付, 返回对应页面重定向信息
9596
*
9697
* @param order 订单信息
98+
* @param <O> 预订单类型
9799
* @return 对应页面重定向信息
98100
*/
99101
<O extends PayOrder>String toPay(O order);
@@ -158,13 +160,15 @@ public interface PayService<PC extends PayConfigStorage> {
158160
* 获取输出二维码,用户返回给支付端,
159161
*
160162
* @param order 发起支付的订单信息
163+
* @param <O> 预订单类型
161164
* @return 返回图片信息,支付时需要的
162165
*/
163166
<O extends PayOrder>BufferedImage genQrPay(O order);
164167
/**
165168
* 获取输出二维码信息,
166169
*
167170
* @param order 发起支付的订单信息
171+
* @param <O> 预订单类型
168172
* @return 返回二维码信息,,支付时需要的
169173
*/
170174
<O extends PayOrder>String getQrPay(O order);
@@ -173,6 +177,7 @@ public interface PayService<PC extends PayConfigStorage> {
173177
* 刷卡付,pos主动扫码付款(条码付)
174178
* 刷脸付
175179
* @param order 发起支付的订单信息
180+
* @param <O> 预订单类型
176181
* @return 返回支付结果
177182
*/
178183
<O extends PayOrder>Map<String, Object> microPay(O order);
@@ -460,6 +465,7 @@ public interface PayService<PC extends PayConfigStorage> {
460465
* 如果需要进行扩展请重写该方法即可
461466
* @param orderInfo 商户平台预订单信息
462467
* @param payOrder 订单信息
468+
* @param <O> 预订单类型
463469
* @return 处理后订单信息
464470
*/
465471
<O extends PayOrder>Map<String, Object> preOrderHandler(Map<String, Object> orderInfo, O payOrder);

pay-java-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>war</packaging>

pay-java-fuiou/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>pay-java-fuiou</artifactId>

pay-java-payoneer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>pay-java-payoneer</artifactId>

pay-java-paypal/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pay-java-union/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pay-java-wx-youdian/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>pay-java-wx-youdian</artifactId>

pay-java-wx/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>pay-java-wx</artifactId>

pay-java-yiji/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>pay-java-parent</artifactId>
77
<groupId>com.egzosn</groupId>
8-
<version>2.12.9-SNAPSHOT</version>
8+
<version>2.12.9</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.egzosn</groupId>
88
<artifactId>pay-java-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>2.12.9-SNAPSHOT</version>
10+
<version>2.12.9</version>
1111

1212
<name>Pay Java - Parent</name>
1313
<description>Pay Java Parent</description>
@@ -58,7 +58,7 @@
5858

5959

6060
<properties>
61-
<pay.version>2.12.9-SNAPSHOT</pay.version>
61+
<pay.version>2.12.9</pay.version>
6262
<httpmime.version>4.5.4</httpmime.version>
6363
<log4j.version>1.2.17</log4j.version>
6464
<fastjson.version>1.2.58</fastjson.version>
@@ -176,20 +176,20 @@
176176
</execution>
177177
</executions>
178178
</plugin>
179-
<!-- <plugin>
179+
<plugin>
180180
<groupId>org.apache.maven.plugins</groupId>
181181
<artifactId>maven-gpg-plugin</artifactId>
182182
<version>1.6</version>
183183
<executions>
184184
<execution>
185185
<id>sign-artifacts</id>
186-
<phase>verify</phase>
187-
<goals>
186+
<phase>none</phase>
187+
<!-- <goals>
188188
<goal>sign</goal>
189-
</goals>
189+
</goals>-->
190190
</execution>
191191
</executions>
192-
</plugin>-->
192+
</plugin>
193193
</plugins>
194194
</build>
195195
</project>

0 commit comments

Comments
 (0)