forked from R3Conclave/conclave-core-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (27 loc) · 1.15 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
plugins {
id 'java-library'
id 'org.jetbrains.kotlin.jvm'
}
dependencies {
api project(":conclave-mail")
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// Needed to parse the JSON response from the IAS
compileOnly "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
compileOnly "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
// Java ed25519 implementation. See https://github.com/str4d/ed25519-java/
implementation "net.i2p.crypto:eddsa:$i2pcrypto_eddsa_version"
testImplementation project(":internal-testing")
testImplementation "org.assertj:assertj-core:$assertj_version"
testImplementation "org.junit.jupiter:junit-jupiter:$junit_jupiter_version"
}
jar {
manifest {
attributes(
// Conclave-GraalVM-Version is actually only needed by the GradleEnclavePlugin
// TODO: Separate the attributes of this manifest correctly
"Conclave-GraalVM-Version": conclave_graal_version.toString(),
"Jep-Version": jep_version.toString(),
"Gramine-Version": gramine_version.toString()
)
}
}