Skip to content

Commit ca656ef

Browse files
committed
llv23 - for bce 0.8.1 source coding
Change-Id: I5efb17f277da069b82c622630ddb8c94f84df5d6
1 parent 60581e0 commit ca656ef

File tree

208 files changed

+16823
-4734
lines changed

Some content is hidden

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

208 files changed

+16823
-4734
lines changed

pom.xml

Lines changed: 73 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.baidu</groupId>
55
<artifactId>bcssdk</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.4.5-SNAPSHOT</version>
7+
<version>0.8.1-SNAPSHOT</version>
88
<name>bcssdk</name>
99
<url>http://maven.apache.org</url>
1010
<properties>
@@ -23,38 +23,95 @@
2323
</repository>
2424
</distributionManagement>
2525
<dependencies>
26-
<!-- bcs dependencies -->
27-
<dependency>
28-
<groupId>log4j</groupId>
29-
<artifactId>log4j</artifactId>
30-
<version>1.2.17</version>
31-
</dependency>
26+
<!-- bcs dependencies, see location in C:\Users\i058959\Downloads\homekits\bce-java-sdk-0.8.1\third-party -->
27+
<!-- http://mvnrepository.com/artifact/commons-codec/commons-codec/1.9 -->
3228
<dependency>
3329
<groupId>commons-codec</groupId>
3430
<artifactId>commons-codec</artifactId>
35-
<version>1.6</version>
31+
<version>1.9</version>
32+
</dependency>
33+
<!-- http://mvnrepository.com/artifact/commons-io/commons-io/2.4 -->
34+
<dependency>
35+
<groupId>commons-io</groupId>
36+
<artifactId>commons-io</artifactId>
37+
<version>2.4</version>
3638
</dependency>
3739
<dependency>
3840
<groupId>commons-logging</groupId>
3941
<artifactId>commons-logging</artifactId>
40-
<version>1.1.1</version>
42+
<version>1.1.3</version>
43+
</dependency>
44+
<!-- http://mvnrepository.com/artifact/com.google.guava/guava/17.0 -->
45+
<dependency>
46+
<groupId>com.google.guava</groupId>
47+
<artifactId>guava</artifactId>
48+
<version>17.0</version>
4149
</dependency>
50+
<!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpasyncclient/4.0.2 -->
51+
<dependency>
52+
<groupId>org.apache.httpcomponents</groupId>
53+
<artifactId>httpasyncclient</artifactId>
54+
<version>4.0.2</version>
55+
</dependency>
56+
<!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient/4.3.5 -->
4257
<dependency>
4358
<groupId>org.apache.httpcomponents</groupId>
4459
<artifactId>httpclient</artifactId>
45-
<version>4.1</version>
60+
<version>4.3.5</version>
4661
</dependency>
47-
<!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore/4.1 -->
62+
<!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore/4.3.2 -->
4863
<dependency>
4964
<groupId>org.apache.httpcomponents</groupId>
5065
<artifactId>httpcore</artifactId>
51-
<version>4.1</version>
66+
<version>4.3.2</version>
67+
</dependency>
68+
<!-- http://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations/2.1.1 -->
69+
<dependency>
70+
<groupId>com.fasterxml.jackson.core</groupId>
71+
<artifactId>jackson-annotations</artifactId>
72+
<version>2.1.1</version>
73+
</dependency>
74+
<!-- http://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core/2.1.1 -->
75+
<dependency>
76+
<groupId>com.fasterxml.jackson.core</groupId>
77+
<artifactId>jackson-core</artifactId>
78+
<version>2.1.1</version>
79+
</dependency>
80+
<!-- http://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.1.1 -->
81+
<dependency>
82+
<groupId>com.fasterxml.jackson.core</groupId>
83+
<artifactId>jackson-databind</artifactId>
84+
<version>2.1.1</version>
85+
</dependency>
86+
<!-- http://mvnrepository.com/artifact/org.slf4j/jcl-over-slf4j/1.7.7 -->
87+
<dependency>
88+
<groupId>org.slf4j</groupId>
89+
<artifactId>jcl-over-slf4j</artifactId>
90+
<version>1.7.7</version>
91+
</dependency>
92+
<!-- http://mvnrepository.com/artifact/joda-time/joda-time/2.3 -->
93+
<dependency>
94+
<groupId>joda-time</groupId>
95+
<artifactId>joda-time</artifactId>
96+
<version>2.3</version>
97+
</dependency>
98+
<!-- http://mvnrepository.com/artifact/ch.qos.logback/logback-classic/1.1.2 -->
99+
<dependency>
100+
<groupId>ch.qos.logback</groupId>
101+
<artifactId>logback-classic</artifactId>
102+
<version>1.1.2</version>
103+
</dependency>
104+
<!-- http://mvnrepository.com/artifact/ch.qos.logback/logback-core/1.1.2 -->
105+
<dependency>
106+
<groupId>ch.qos.logback</groupId>
107+
<artifactId>logback-core</artifactId>
108+
<version>1.1.2</version>
52109
</dependency>
53-
<!-- http://mvnrepository.com/artifact/net.sf.flexjson/flexjson/2.1 -->
110+
<!-- http://mvnrepository.com/artifact/org.slf4j/slf4j-api/1.7.7 -->
54111
<dependency>
55-
<groupId>net.sf.flexjson</groupId>
56-
<artifactId>flexjson</artifactId>
57-
<version>2.1</version>
112+
<groupId>org.slf4j</groupId>
113+
<artifactId>slf4j-api</artifactId>
114+
<version>1.7.7</version>
58115
</dependency>
59116
<dependency>
60117
<groupId>junit</groupId>

src/main/java/com/baidu/inf/iis/bcs/BaiduBCS.java

Lines changed: 0 additions & 745 deletions
This file was deleted.

src/main/java/com/baidu/inf/iis/bcs/auth/BCSCredentials.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/main/java/com/baidu/inf/iis/bcs/auth/BCSSignCondition.java

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/main/java/com/baidu/inf/iis/bcs/auth/BCSSigner.java

Lines changed: 0 additions & 102 deletions
This file was deleted.

src/main/java/com/baidu/inf/iis/bcs/auth/SigningAlgorithm.java

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/main/java/com/baidu/inf/iis/bcs/handler/BucketListResponseHandler.java

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)