Skip to content

Commit 16101f2

Browse files
2.9.x fisco sdk sm_fix (#60)
* sm_fix --------- Co-authored-by: 王越 [email protected] <[email protected]>
1 parent 4ceb9a8 commit 16101f2

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

Diff for: WeBankBlockchain-Data-Export-sdk/build.gradle

+13-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apply plugin: 'signing'
99
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
1010

1111
group = 'com.webank'
12-
version = "1.7.8"
12+
version = "1.7.9"
1313

1414
allprojects {
1515
repositories {
@@ -55,21 +55,24 @@ dependencies {
5555
compile logger
5656
compile ('cn.hutool:hutool-all:5.3.7')
5757
compile group: 'com.google.guava', name: 'guava', version: '30.0-jre'
58-
implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.0')
58+
implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.0'){
59+
exclude(group: 'org.fisco-bcos', module: 'netty-sm-ssl-context')
60+
}
61+
implementation ('org.fisco-bcos:netty-sm-ssl-context:1.2.0')
5962
compile 'commons-codec:commons-codec:1.4'
60-
compile group: "org.apache.shardingsphere", name: "shardingsphere-jdbc-core", version: '5.0.0-alpha'
63+
compile (group: "org.apache.shardingsphere", name: "shardingsphere-jdbc-core", version: '5.0.0-alpha')
6164
compile('ch.qos.logback:logback-core:1.2.3')
6265
compile('ch.qos.logback:logback-classic:1.2.3')
6366
compileOnly ('org.projectlombok:lombok:1.18.10')
6467
annotationProcessor 'org.projectlombok:lombok:1.18.10'
6568
compile (group: 'com.zaxxer', name: 'HikariCP', version: '3.4.1')
6669
compile("com.fasterxml.jackson.core:jackson-databind:2.11.0")
67-
compile 'org.elasticsearch.client:transport:7.10.2'
70+
compile ('org.elasticsearch.client:transport:7.10.2')
6871
compile(group:'org.apache.shardingsphere.elasticjob', name: 'elasticjob-lite-core',version:'3.0.0-alpha')
69-
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.16'
72+
compile (group: 'mysql', name: 'mysql-connector-java', version: '8.0.16')
7073
compile 'org.apache.logging.log4j:log4j-core:2.11.0'
7174
testCompile ("junit:junit:4.12")
72-
compile 'com.github.briandilley.jsonrpc4j:jsonrpc4j:1.0'
75+
compile ('com.github.briandilley.jsonrpc4j:jsonrpc4j:1.0')
7376
}
7477

7578
sourceSets {
@@ -211,7 +214,9 @@ subprojects {
211214
dependencies {
212215
compile ('cn.hutool:hutool-all:5.3.7')
213216
compile group: 'com.google.guava', name: 'guava', version: '30.0-jre'
214-
implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.7.2')
217+
implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.2'){
218+
exclude(group: 'org.fisco-bcos', module: 'netty-sm-ssl-context')
219+
}
215220
compile 'commons-codec:commons-codec:1.4'
216221
compile group: "org.apache.shardingsphere", name: "shardingsphere-jdbc-core", version: '5.0.0-alpha'
217222
compile('ch.qos.logback:logback-core:1.2.3')
@@ -220,7 +225,7 @@ subprojects {
220225
annotationProcessor 'org.projectlombok:lombok:1.18.10'
221226
compile (group: 'com.zaxxer', name: 'HikariCP', version: '3.4.1')
222227
compile("com.fasterxml.jackson.core:jackson-databind:2.11.0")
223-
compile 'org.elasticsearch.client:transport:7.10.2'
228+
compile ('org.elasticsearch.client:transport:7.10.2')
224229
compile(group:'org.apache.shardingsphere.elasticjob', name: 'elasticjob-lite-core',version:'3.0.0-alpha')
225230
compile 'org.apache.logging.log4j:log4j-core:2.11.0'
226231
testCompile ("junit:junit:4.12")

Diff for: build.gradle

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ allprojects {
2020
}
2121

2222
subprojects{
23-
version = "1.7.8"
23+
version = "1.7.9"
2424
group = 'com.webank'
2525
}
2626

@@ -52,11 +52,9 @@ project(':WeBankBlockchain-Data-Export-service') {
5252
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
5353
compileOnly 'org.projectlombok:lombok:1.18.10'
5454
annotationProcessor 'org.projectlombok:lombok:1.18.10'
55-
testImplementation('org.springframework.boot:spring-boot-starter-test')
5655
testImplementation('org.springframework.boot:spring-boot-starter-test') {
5756
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
5857
}
59-
// compile 'com.webank:data-export-sdk:1.7.2'
6058
implementation ('com.webank:solc-gradle-plugin:1.0.0'){
6159
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
6260
}
@@ -73,4 +71,3 @@ configurations {
7371
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
7472
}
7573
}
76-

0 commit comments

Comments
 (0)