Rewrite MultiplatformProjectImportingTest to use testData directory

This commit is contained in:
Natalia Selezneva
2018-08-10 09:39:41 +03:00
parent d20b58ce61
commit 97f1fc1f54
32 changed files with 608 additions and 703 deletions
@@ -0,0 +1,49 @@
buildscript {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.41")
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
project('cmn') {
apply plugin: 'kotlin-platform-common'
}
project('jvm') {
apply plugin: 'kotlin-platform-jvm'
dependencies {
expectedBy project(":cmn")
}
}
project('app') {
repositories {
mavenCentral()
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 26
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "org.jetbrains.kotlin"
minSdkVersion 18
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
}
dependencies {
compile project(":jvm")
}
}
@@ -0,0 +1 @@
include ':app', ':jvm', ':cmn'