mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
40 lines
1.1 KiB
Groovy
40 lines
1.1 KiB
Groovy
group 'com.r3cev.prototyping'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
// Dokka (JavaDoc equivalent for Kotlin) download is a big download and also
|
|
// can interfere with the Kotlin compiler if it gets out of sync, version wise.
|
|
// To generate API docs, uncomment this line, then uncomment 'apply plugin' line
|
|
// below, and then run 'gradle dokka' and look in core/build/dokka/core/index.html
|
|
|
|
// classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.7"
|
|
}
|
|
}
|
|
|
|
// apply plugin: 'org.jetbrains.dokka'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
|
|
compile "org.slf4j:slf4j-jdk14:1.7.13"
|
|
|
|
compile("com.google.guava:guava:19.0")
|
|
|
|
// Quasar: for the bytecode rewriting for state machines.
|
|
compile("co.paralleluniverse:quasar-core:${quasar_version}:jdk8")
|
|
}
|