-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (42 loc) · 1.18 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'java'
id 'war'
}
group = 'decentralized-identity'
version = '1.0-SNAPSHOT'
java {
sourceCompatibility = '17'
}
//configurations {
// compileOnly {
// extendsFrom annotationProcessor
// }
//}
repositories {
mavenCentral()
maven {
url "https://repo.danubetech.com/repository/maven-releases/"
}
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'org.fisco-bcos.java-sdk:fisco-bcos-java-sdk-v3:3.4.0'
implementation 'org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:2.9.3'
// weid
implementation("com.webank:weid-java-sdk:3.1.1-rc.1") {
exclude group: "org.slf4j", module: "slf4j-log4j12"
}
// did
implementation 'decentralized-identity:did-common-java:1.6.0'
implementation 'decentralized-identity:uni-resolver-core:0.11.0'
implementation 'decentralized-identity:uni-resolver-local:0.11.0'
implementation 'decentralized-identity:uni-resolver-driver:0.11.0'
implementation 'com.google.guava:guava:32.1.1-jre'
}
test {
useJUnitPlatform()
}
war {
webXml = file('src/main/web/WEB-INF/web.xml')
}