You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugins {
id "io.freefair.lombok" version "5.3.0"
}
dependencies {
implementation libraries['web3j']
implementation libraries['okhttp']
}
8. module-2 build.gradle
plugins {
id 'org.springframework.boot' version '2.4.5'
id "io.freefair.lombok" version "5.3.0"
}
dependencies {
compile project(":common")
testImplementation libraries['spring-boot-starter-test']
}
9. other
rootProject.name ='blockstudy'
include 'common'
include 'blockApi'