forked from Consensys/tessera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (44 loc) · 1.17 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
plugins {
id "java-library"
id "application"
}
application {
startScripts.enabled = false
}
dependencyCheck {
failBuildOnCVSS = 11
}
configurations.all {
exclude group: "stax"
exclude module: "javax.mail"
exclude group: "jakarta.json"
}
dependencies {
implementation project(":config")
implementation project(":key-vault:key-vault-api")
implementation ("com.azure:azure-security-keyvault-secrets:4.4.2") {
exclude group: 'com.azure', module: 'azure-core-http-netty'
}
implementation("com.azure:azure-identity:1.5.1") {
exclude group: 'com.azure', module: 'azure-core-http-netty'
}
implementation("com.azure:azure-core:1.29.1") {
exclude group: 'com.azure', module: 'azure-core-http-netty'
}
implementation 'com.azure:azure-core-http-okhttp:1.10.1'
implementation 'com.squareup.okio:okio:3.1.0'
testImplementation "org.glassfish:jakarta.json"
constraints {
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonDatabindVersion") {
because 'databind less than 2.13.2.2 has a bug'
}
}
}
publishing {
publications {
mavenJava(MavenPublication) {
artifact distZip
artifact distTar
}
}
}