Skip to content

Commit

Permalink
<fix>(build): update spring and guava deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay committed Feb 22, 2024
1 parent 3578146 commit 64e85bc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .ci/ci_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ bash nodes/127.0.0.1/start_all.sh
mkdir -p src/integTest/resources/chains/bcos
cp -r nodes/127.0.0.1/sdk/* src/integTest/resources/chains/bcos
cp src/test/resources/stub.toml src/integTest/resources/chains/bcos/
sed -i.bak -e 's/BCOS2/GM_BCOS2/g' -e 's/gmConnectEnable = false/gmConnectEnable = true/g' src/integTest/resources/chains/bcos/stub.toml
sed -i.bak -e 's/BCOS2/GM_BCOS2/g' src/integTest/resources/chains/bcos/stub.toml
sed -i.bak -e 's/gmConnectEnable = false/gmConnectEnable = true/g' src/integTest/resources/chains/bcos/stub.toml

cat src/integTest/resources/chains/bcos/stub.toml
mkdir -p src/integTest/resources/accounts
Expand Down
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
apply plugin: 'com.github.johnrengelman.shadow'

group 'com.webank.wecross'
version '1.3.2'
version '1.4.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -87,10 +87,13 @@ dependencies {
implementation 'commons-codec:commons-codec:1.14'

implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'com.google.guava:guava:30.1-jre'
implementation 'com.google.guava:guava:32.0.1-jre'
implementation 'org.yaml:snakeyaml:2.0'

implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.1')
implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.1') {
exclude group: "org.bouncycastle"
}
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
implementation 'commons-io:commons-io:2.7'

implementation 'org.fisco-bcos:solcJ:0.5.2.0'
Expand Down
2 changes: 1 addition & 1 deletion release_note.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.3.0
v1.4.0

0 comments on commit 64e85bc

Please sign in to comment.