Smallville7123
04/12/2019, 6:42 AM> Plugin with id 'kpp' not found.
my buildSrc/build.gradle.kts
is plugins {
kotlin("multiplatform") version "1.3.21"
}
repositories {
jcenter()
mavenCentral()
}
kotlin {
jvm {
val main by compilations.getting {
kotlinOptions {
// Setup the Kotlin compiler options for the 'main' compilation:
jvmTarget = "1.8"
}
compileKotlinTask // get the Kotlin task 'compileKotlinJvm'
output // get the main compilation output
}
compilations["test"].runtimeDependencyFiles // get the test runtime classpath
}
// Configure all compilations of all targets:
targets.all {
compilations.all {
kotlinOptions {
allWarningsAsErrors = true
}
}
}
}
gildor
04/12/2019, 6:59 AM