forked from R3Conclave/conclave-core-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
37 lines (33 loc) · 1.1 KB
/
settings.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
pluginManagement {
apply from: "${rootProject.projectDir}/../versions.gradle"
repositories {
maven {
url = "${rootProject.projectDir}/../build/repo"
}
apply from: "${rootProject.projectDir}/repositories_plugin.gradle"
}
plugins {
id 'org.jetbrains.kotlin.jvm' version kotlin_version apply false
id 'org.jetbrains.kotlin.plugin.serialization' version kotlin_version apply false
id 'com.r3.conclave.enclave' version conclave_version apply false
}
}
include 'shading-tests'
include 'kotlin-enclave:enclave'
include 'kotlin-enclave:host'
include 'general:common'
include 'general:common-enclave'
include 'general:common-test'
include 'general:default-enclave'
include 'general:filesystem-db-enclave'
include 'general:persisting-enclave'
include 'general:threadsafe-enclave'
include 'general:threadsafe-enclave-same-signer'
include 'general:tests'
include 'general:mock-compatibility-tests'
include 'tribuo:client'
include 'tribuo:common'
include 'tribuo:enclave'
include 'plugin-tests'
include 'pytorch-enclave:enclave'
include 'pytorch-enclave:host'