MPP: Attach all classes/resources directories to the runtime classpath (KT-30710)

This commit is contained in:
Yan Zhulanow
2019-06-10 21:54:05 +09:00
parent bc0f10449a
commit 12861595f5
5 changed files with 150 additions and 0 deletions
@@ -0,0 +1,25 @@
buildscript {
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
apply from: "include.gradle"
def kotlinVersion = gradleKotlinPluginVersion('1.3.40-eap-67')
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
apply plugin: 'kotlin-multiplatform'
apply plugin: 'kotlin-kapt'
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
}
kotlin {
jvm('jvm') { withJava() }
}