Skip to content

Commit 9fea288

Browse files
committed
CORE SDK Auto Released By sunzhiqiang,Version:4.3.0
发布日志: 1, Separation of system and business parameters
1 parent 1675a9d commit 9fea288

File tree

192 files changed

+4832
-2484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+4832
-2484
lines changed

aliyun-java-sdk-core/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-01-07 Version: 4.3.0
2+
1, Separation of system and business parameters
3+
14
2018-12-27 Version: 4.2.5
25
1, The actual data format defaults to a form.
36
2, Signature adds timestamp and thread id.

aliyun-java-sdk-core/pom.xml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-core</artifactId>
66
<packaging>jar</packaging>
7-
<version>4.2.5</version>
7+
<version>4.3.0</version>
88
<name>aliyun-java-sdk-core</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -48,6 +48,10 @@
4848
<email>aliyunsdk@aliyun.com</email>
4949
</developer>
5050
</developers>
51+
<properties>
52+
<powermock.version>1.7.1</powermock.version>
53+
<mockito.version>1.10.19</mockito.version>
54+
</properties>
5155
<dependencies>
5256
<dependency>
5357
<groupId>junit</groupId>
@@ -85,6 +89,24 @@
8589
<artifactId>activation</artifactId>
8690
<version>1.1.1</version>
8791
</dependency>
92+
<dependency>
93+
<groupId>org.mockito</groupId>
94+
<artifactId>mockito-all</artifactId>
95+
<version>${mockito.version}</version>
96+
<scope>test</scope>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.powermock</groupId>
100+
<artifactId>powermock-module-junit4</artifactId>
101+
<version>${powermock.version}</version>
102+
<scope>test</scope>
103+
</dependency>
104+
<dependency>
105+
<groupId>org.powermock</groupId>
106+
<artifactId>powermock-api-mockito</artifactId>
107+
<version>${powermock.version}</version>
108+
<scope>test</scope>
109+
</dependency>
88110
</dependencies>
89111

90112
<build>

aliyun-java-sdk-core/src/main/java/com/aliyuncs/AcsErrorUnmarshaller.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.aliyuncs;
22

3-
import java.util.Map;
4-
53
import com.aliyuncs.transform.UnmarshallerContext;
64

5+
import java.util.Map;
6+
77
public class AcsErrorUnmarshaller {
88
public static AcsError unmarshall(AcsError error, UnmarshallerContext context) {
99
Map<String, String> map = context.getResponseMap();

0 commit comments

Comments
 (0)