blob: 567ec7ac1f1fd2c359a1143fc7e2a772c8677777 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
apply plugin: "kotlin-platform-native"
apply from: project.rootProject.file('gradle/maven-central.gradle')
sourceSets {
main {
component {
target "ios_arm64", "ios_arm32", "ios_x64", "macos_x64", "linux_x64", "mingw_x64"
outputKinds = [KLIBRARY]
pom {
withXml(configureMavenCentralMetadata)
}
}
}
}
dependencies {
expectedBy project(':kotlinx-coroutines-core-common')
}
if (project.hasProperty("teamcity")) {
afterEvaluate {
runTestDebug {
args '--ktest_logger=TEAMCITY'
}
}
}