a45e557be1
* move sources to meet gradle conventions * create gradle scripts and plugin
26 lines
473 B
Groovy
26 lines
473 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.0.3'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = "org.jetbrains.kotlin.native.interop.gen.jvm.MainKt"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
compile project(':Interop:Indexer')
|
|
}
|