Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dep java-sdk-3.6.0-SNAPSHOT #801

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ bin/**
/account
/build_chain.sh
/deploylog.txt
/bin/
34 changes: 18 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
plugins {
id 'com.github.sherter.google-java-format' version '0.8'
id 'java-library'
id 'java'
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'eclipse'

Expand All @@ -13,7 +15,7 @@ targetCompatibility = 1.8

repositories {
mavenCentral()
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
maven { url "https://maven.aliyun.com/nexus/content/groups/public/" }
maven { url "https://oss.sonatype.org/service/local/staging/deploy/maven2" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
Expand All @@ -34,32 +36,32 @@ List logger = [

// In this section you declare the dependencies for your production and test code
dependencies {
compile logger
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'
compile 'org.fisco-bcos:solcJ:0.8.11.1'
implementation 'org.fisco-bcos:solcJ:0.8.11.1'

compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.5.0') {
implementation ('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.6.0-SNAPSHOT') {
exclude group: "org.slf4j"
}

compile('org.fisco-bcos:evm-static-analysis:1.0.0') {
exclude group: "org.slf4j"
implementation('org.fisco-bcos:evm-static-analysis:1.0.0') {
exclude group: "org.slf4j"
}
compile('commons-cli:commons-cli:1.5.0')
compile('org.jline:jline:3.21.0')
compile('io.bretty:console-table-builder:1.2')
compile('com.github.jsqlparser:jsqlparser:2.0')
compile('org.fisco-bcos.code-generator:bcos-code-generator:1.2.0') {
implementation('commons-cli:commons-cli:1.5.0')
implementation('org.jline:jline:3.21.0')
implementation('io.bretty:console-table-builder:1.2')
implementation('com.github.jsqlparser:jsqlparser:2.0')
implementation('org.fisco-bcos.code-generator:bcos-code-generator:1.2.0') {
exclude group: "org.fisco-bcos.java-sdk"
exclude group: "org.slf4j"
}
compile ('com.fasterxml.jackson.core:jackson-databind:2.14.3'){
implementation ('com.fasterxml.jackson.core:jackson-databind:2.14.3'){
force true
}
testCompile('com.github.stefanbirkner:system-rules:1.19.0')
testCompile('junit:junit:4.13.2')
testImplementation('com.github.stefanbirkner:system-rules:1.19.0')
testImplementation('junit:junit:4.13.2')
}

configurations.all {
Expand Down Expand Up @@ -88,7 +90,7 @@ sourceSets {
}
}
configurations {
integrationTestCompile.extendsFrom testCompile
integrationTestCompile.extendsFrom testImplementation
integrationTestRuntime.extendsFrom testRuntime
}

Expand Down
Loading