Install
Build configuration
The multiplatform-testing
plugin is available on Maven Central. To install, add the following lines:
kotlinbuildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("io.deepmedia.tools.testing:plugin:0.4.0")
}
}
and then apply it to the desired project:
kotlinplugins {
id("kotlin-multiplatform")
id("io.deepmedia.tools.multiplatform-testing")
}
Snapshots
We also publish development snapshots with version latest-SNAPSHOT
in sonatype:
kotlinbuildscript {
repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
classpath("io.deepmedia.tools.testing:plugin:latest-SNAPSHOT")
}
}