-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
51 lines (42 loc) · 1.42 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
group "net.corda.did"
version "1.0-SNAPSHOT"
buildscript {
ext {
corda_release_group = "net.corda"
corda_release_version = "4.0"
corda_gradle_plugins_version = "4.0.38"
kotlin_version = "1.2.71"
junit_version = "4.12"
quasar_version = "0.7.10"
corda_platform_version = "4"
dokka_version = "0.9.18"
hamkrest_version = "1.7.0.0"
http4k_version = "3.112.2"
}
repositories {
mavenCentral()
jcenter()
maven {
url "https://ci-artifactory.corda.r3cev.com/artifactory/corda"
}
mavenLocal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "net.corda.plugins:cordapp:$corda_gradle_plugins_version"
classpath "net.corda.plugins:cordformation:$corda_gradle_plugins_version"
classpath "net.corda.plugins:quasar-utils:$corda_gradle_plugins_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
mavenLocal()
maven { url "https://ci-artifactory.corda.r3cev.com/artifactory/corda-dev" }
maven { url "https://ci-artifactory.corda.r3cev.com/artifactory/corda" }
// can be removed post-release - used to get nightly snapshot build
maven { url 'https://jitpack.io' }
}
}