forked from roger-that-dev/obligation-cordapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (38 loc) · 1.25 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
buildscript {
ext {
corda_release_group = 'net.corda'
corda_release_version = '4.0-RC02'
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'
artifactory_contextUrl = 'https://ci-artifactory.corda.r3cev.com/artifactory'
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "$artifactory_contextUrl/corda-releases"
}
}
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"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/exposed' }
maven { url 'https://jitpack.io' }
// used to get nightly snapshot build
maven { url "$artifactory_contextUrl/corda-dev" }
maven { url "$artifactory_contextUrl/corda-releases" }
mavenLocal()
}
}