sure: ```apply plugin: 'kotlin-platform-common' a...
# multiplatform
g
sure:
Copy code
apply plugin: 'kotlin-platform-common'

archivesBaseName = 'bigbox-interop'

repositories {
    jcenter()
    mavenCentral()
    maven {
        url '<http://dl.bintray.com/kotlin/kotlin-eap-1.2>'
    }
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib:1.2.0-beta-88"
    //testCompile libraries.kotlin_test_annotations_common
    //testCompile libraries.kotlin_test_common
}

task sourcesJar(type: Jar) {
    classifier = 'sources'
    from sourceSets.main.kotlin
}

artifacts {
    archives sourcesJar
}