mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
32 lines
653 B
Groovy
32 lines
653 B
Groovy
|
group 'com.r3cev.experimental'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
buildscript {
|
||
|
ext.kotlin_version = '1.0.0-beta-1103'
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
compile "com.google.guava:guava:18.0"
|
||
|
compile "org.funktionale:funktionale:0.6_1.0.0-beta"
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main.java.srcDirs += 'src'
|
||
|
}
|