@@ -16,7 +16,7 @@ apply plugin: 'java'
16
16
apply plugin : ' eclipse'
17
17
apply plugin : ' idea'
18
18
19
- version = " 1.5.6 "
19
+ version = " 1.5.8 "
20
20
21
21
// Specify JDK version - may vary in different scenarios
22
22
sourceCompatibility = 1.8
@@ -61,6 +61,16 @@ List spring_boot = [
61
61
" org.springframework.boot:spring-boot-starter-aop:$spring_boot_version "
62
62
]
63
63
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
+
64
74
List spring_boot_test = [
65
75
" org.springframework.boot:spring-boot-starter-test:$spring_boot_version "
66
76
]
@@ -78,13 +88,13 @@ List json = [
78
88
]
79
89
80
90
List weid_java_sdk = [
81
- ' com.webank:weid-java-sdk:1.8.0 '
91
+ ' com.webank:weid-java-sdk:1.8.3 '
82
92
]
83
93
84
94
// In this section you declare the dependencies for your production and test code
85
95
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
88
98
// Check SDK pipeline dependency
89
99
if (file(" ./dependencies/weid-java-sdk-pipeline.jar" ). exists()) {
90
100
println " Pipeline jar for WeIdentity Java SDK found."
0 commit comments