-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
27 lines (24 loc) · 991 Bytes
/
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
pluginManagement {
repositories {
maven {
def repoPath = file(rootDir.relativePath(file(conclaveRepo)))
if (repoPath == null)
throw new Exception("Make sure the 'conclaveRepo' setting exists in gradle.properties, or your \$HOME/gradle.properties file. See the Conclave tutorial on https://docs.conclave.net")
else if (!new File(repoPath, "com").isDirectory())
throw new Exception("The $repoPath directory doesn't seem to exist or isn't a Maven repository; it should be the SDK 'repo' subdirectory. See the Conclave tutorial on https://docs.conclave.net")
url = repoPath
}
// Add standard repositories back.
gradlePluginPortal()
jcenter()
mavenCentral()
}
plugins {
id 'com.r3.conclave.enclave' version conclaveVersion apply false
}
}
include 'enclave'
include 'host'
include 'client'
include 'enclave-lottery'
include 'enclave-lottery'