Skip to content

Commit

Permalink
Merge pull request #337 from WeBankBlockchain/feature/support-javasdk
Browse files Browse the repository at this point in the history
Feature/support javasdk
  • Loading branch information
youwenbusi committed Aug 17, 2022
2 parents 3762667 + 8b93c8c commit 748c854
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -197,4 +197,4 @@ doc/bak/
/dist/

secring.gpg
gradle.properties
*.address
5 changes: 5 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
### V1.7.0
### V1.8.5 (2022-08-16)
Features:
1. Replace the web3sdk with fisco-bcos-java-sdk
2. Support the OSCCA-approved(SM2/SM3) cryptography algorithm
3. Support the FISCO BCOS 3.0.0 (rc4 version)
4. Upgrade the functionality of WeID-Build-Tools to accommodate the new version of weid-java-sdk

### V1.7.0 (2021-01-08)
Features:
1. FISCO BCOS 1.3.x support is fully removed - please use the FISCO BCOS 2.x node version respectively.
2. Evidence and WeIdDocument query performance improved due to support batch type blockchain node data lookup.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.5-rc.8-SNAPSHOT
1.8.5-rc1
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ repositories {
}
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://oss.sonatype.org/content/groups/public/" }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
} else {
maven {
url 'dependencies'
Expand Down Expand Up @@ -173,7 +173,8 @@ dependencies {
localDeps 'org.projectlombok:lombok:1.18.10'
if (!gradle.startParameter.isOffline()) {
compile logger, lombok, apache_commons, json, mysql_driver, redisson, zxing, rpc, pdfbox, protobuf, caffeine, oval, gson
compile("com.webank:weid-contract-java:1.3.0-rc.4-SNAPSHOT")
// compile("com.webank:weid-contract-java:1.3.0-rc.4-SNAPSHOT")
compile("com.webank:weid-contract-java:1.3.0-rc1")

compile fileTree(dir: 'lib', include: '*.jar')
implementation 'com.google.guava:guava:31.1-jre'
Expand Down Expand Up @@ -344,7 +345,7 @@ if (!gradle.startParameter.isOffline()) {
uploadArchives {
repositories {
mavenDeployer {
// beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: sonatypeUsername, password: sonatypePassword)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
jdkTlsNamedGroups=secp256r1,secp256k1
repoType=cn
repoType=en
signing.keyId=
signing.password=
signing.secretKeyRingFile=
Expand Down

0 comments on commit 748c854

Please sign in to comment.