Skip to content

Commit 0e23310

Browse files
authored
Merge pull request #68 from WeBankBlockchain/release/1.5.8
Release/1.5.8
2 parents 6ddefcc + a3128f9 commit 0e23310

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

build.gradle

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: 'java'
1616
apply plugin: 'eclipse'
1717
apply plugin: 'idea'
1818

19-
version = "1.5.6"
19+
version = "1.5.8"
2020

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

64+
def log4j_version = "2.15.0"
65+
List log4j = [
66+
"org.apache.logging.log4j:log4j-api:$log4j_version",
67+
"org.apache.logging.log4j:log4j-web:$log4j_version",
68+
"org.apache.logging.log4j:log4j-core:$log4j_version",
69+
"org.apache.logging.log4j:log4j-jcl:$log4j_version",
70+
"org.apache.logging.log4j:log4j-jul:$log4j_version",
71+
"org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
72+
]
73+
6474
List spring_boot_test = [
6575
"org.springframework.boot:spring-boot-starter-test:$spring_boot_version"
6676
]
@@ -78,13 +88,13 @@ List json = [
7888
]
7989

8090
List weid_java_sdk = [
81-
'com.webank:weid-java-sdk:1.8.0'
91+
'com.webank:weid-java-sdk:1.8.3'
8292
]
8393

8494
// In this section you declare the dependencies for your production and test code
8595
dependencies {
86-
compile spring, json, spring_boot
87-
testCompile spring, json, junit, spring_boot, spring_boot_test
96+
compile spring, json, spring_boot, log4j
97+
testCompile spring, json, junit, spring_boot, log4j, spring_boot_test
8898
// Check SDK pipeline dependency
8999
if (file("./dependencies/weid-java-sdk-pipeline.jar").exists()) {
90100
println "Pipeline jar for WeIdentity Java SDK found."

0 commit comments

Comments
 (0)