Add jitpack repo URL to root build file

This commit is contained in:
Thomas Schroeter 2017-02-17 19:51:54 +00:00 committed by Andrius Dagys
parent 3b8d696379
commit 0c58a506a9

View File

@ -86,6 +86,10 @@ allprojects {
group 'net.corda'
version "$corda_version"
repositories {
maven { url 'https://jitpack.io' }
}
}
// Check that we are running on a Java 8 JDK. The source/targetCompatibility values above aren't sufficient to
@ -204,4 +208,4 @@ task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
sourceDirs = files('core/src/main/kotlin', 'client/src/main/kotlin', 'node/src/main/kotlin', 'finance/src/main/kotlin')
}
task apidocs(dependsOn: ['dokka', 'dokkaJavadoc'])
task apidocs(dependsOn: ['dokka', 'dokkaJavadoc'])