mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +00:00
31 lines
619 B
Groovy
31 lines
619 B
Groovy
|
group 'net.corda'
|
||
|
version '0.7-SNAPSHOT'
|
||
|
|
||
|
buildscript {
|
||
|
ext.kotlin_version = '1.0.6'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
||
|
|
||
|
// TornadoFX: A lightweight Kotlin framework for working with JavaFX UI's.
|
||
|
compile 'no.tornado:tornadofx:1.5.7'
|
||
|
}
|