Skip to content

Commit

Permalink
<feat>(client&connection): init client&connection code
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfang2 committed Aug 1, 2024
1 parent d2b7729 commit dc4dde0
Show file tree
Hide file tree
Showing 23 changed files with 1,636 additions and 10 deletions.
12 changes: 4 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ dependencies {
exclude group: "io.netty"
exclude group: 'org.fisco-bcos', module: 'tcnative'
}

implementation 'org.web3j:core:4.9.8'

// implementation('org.fisco-bcos.java-sdk:fisco-bcos-sdk-abi:2.10.0-SNAPSHOT')

// Use JUnit test framework
Expand Down Expand Up @@ -124,15 +127,8 @@ sourceSets {

shadowJar {
dependsOn(copyHooks)
dependencies {
//排除掉io.netty:.*,不打包进fat jar
exclude(dependency('io.netty:.*'))
}
mergeServiceFiles()
minimize{
//不优化处理io.grpc:.*,直接打进fat jar
exclude(dependency('io.grpc:.*'))
}
minimize()
}


Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
9 changes: 9 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
pluginManagement {
repositories {
maven {
url 'https://maven.aliyun.com/repository/gradle-plugin'
}
gradlePluginPortal()
}
}
rootProject.name = 'web3-stub'
Loading

0 comments on commit dc4dde0

Please sign in to comment.