Skip to content

Commit

Permalink
Add runtime desc in build.gradle (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
morebtcg authored Nov 8, 2023
1 parent 0198dac commit 54a282a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ List logger = [
// In this section you declare the dependencies for your production and test code
dependencies {
implementation logger
//compile 'org.fisco-bcos:solcJ:0.4.25.1'
//compile 'org.fisco-bcos:solcJ:0.6.10.1'
//compile 'org.fisco-bcos:solcJ:0.5.2.1'
//implementation 'org.fisco-bcos:solcJ:0.4.25.1'
//implementation 'org.fisco-bcos:solcJ:0.6.10.1'
//implementation 'org.fisco-bcos:solcJ:0.5.2.1'
implementation 'org.fisco-bcos:solcJ:0.8.11.1'

implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.6.0-SNAPSHOT') {
Expand Down Expand Up @@ -101,15 +101,15 @@ task integrationTest(type: Test) {

jar {
destinationDir file('dist/apps')
archiveName project.name + '.jar'
archiveFileName=project.name + '.jar'
exclude '**/*.xml'
exclude '**/*.properties'
exclude '**/*.crt'
exclude '**/*.key'

doLast {
copy {
from configurations.runtime
from configurations.runtimeClasspath
into 'dist/lib'
}
copy {
Expand Down

0 comments on commit 54a282a

Please sign in to comment.