-
Notifications
You must be signed in to change notification settings - Fork 11
/
settings.gradle
45 lines (38 loc) · 1.13 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
38
39
40
41
42
43
44
45
pluginManagement {
apply from: 'versions.gradle'
repositories {
// Dokka artifacts location
exclusiveContent {
forRepository {
maven {
url = "https://software.r3.com/artifactory/conclave-maven"
}
}
// We want to be sure only Dokka artifacts are retrieved from this location
filter {
includeModuleByRegex("com\\.r3\\.conclave\\.dokka", ".*")
}
}
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == 'org.jetbrains.kotlin.jvm' || requested.id.id == 'org.jetbrains.kotlin.plugin.serialization') {
useVersion kotlin_version
}
}
}
}
rootProject.name = "conclave-core-sdk"
include 'cpp'
include 'conclave-mail'
include 'conclave-common'
include 'conclave-enclave'
include 'conclave-host'
include 'conclave-web-host'
include 'conclave-client'
include 'conclave-web-client'
include 'conclave-init'
include 'internal-testing'
include 'plugin-enclave-gradle'
include 'python-enclave-adapter'