Skip to content

Commit

Permalink
Merge pull request #68 from WeBankBlockchain/release/1.5.8
Browse files Browse the repository at this point in the history
Release/1.5.8
  • Loading branch information
yanggang-JV authored Dec 11, 2021
2 parents 51c04f8 + faf39c8 commit 263cc3f
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'

version = "1.5.6"
version = "1.5.8"

// Specify JDK version - may vary in different scenarios
sourceCompatibility = 1.8
Expand Down Expand Up @@ -61,6 +61,16 @@ List spring_boot = [
"org.springframework.boot:spring-boot-starter-aop:$spring_boot_version"
]

def log4j_version = "2.15.0"
List log4j = [
"org.apache.logging.log4j:log4j-api:$log4j_version",
"org.apache.logging.log4j:log4j-web:$log4j_version",
"org.apache.logging.log4j:log4j-core:$log4j_version",
"org.apache.logging.log4j:log4j-jcl:$log4j_version",
"org.apache.logging.log4j:log4j-jul:$log4j_version",
"org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
]

List spring_boot_test = [
"org.springframework.boot:spring-boot-starter-test:$spring_boot_version"
]
Expand All @@ -78,13 +88,13 @@ List json = [
]

List weid_java_sdk = [
'com.webank:weid-java-sdk:1.8.0'
'com.webank:weid-java-sdk:1.8.3'
]

// In this section you declare the dependencies for your production and test code
dependencies {
compile spring, json, spring_boot
testCompile spring, json, junit, spring_boot, spring_boot_test
compile spring, json, spring_boot, log4j
testCompile spring, json, junit, spring_boot, log4j, spring_boot_test
// Check SDK pipeline dependency
if (file("./dependencies/weid-java-sdk-pipeline.jar").exists()) {
println "Pipeline jar for WeIdentity Java SDK found."
Expand Down

0 comments on commit 263cc3f

Please sign in to comment.