Fix of plugin dependencies
This commit is contained in:
parent
5d3a41cd4d
commit
abfd205cf6
12
README.md
12
README.md
@ -21,7 +21,7 @@ buildscript {
|
||||
}
|
||||
|
||||
plugins {
|
||||
kotlin("multiplatform") version "2.0.20" // version of kotlin must be same as in this library
|
||||
kotlin("multiplatform") version "2.0.20" // version of kotlin must be the same as in this library
|
||||
}
|
||||
|
||||
repositories {
|
||||
@ -71,6 +71,11 @@ xomrk {
|
||||
kotlin {
|
||||
// same as with original kotlin plugin
|
||||
}
|
||||
|
||||
// lazily enables `maven-publish` if not yet
|
||||
publishing {
|
||||
// same as with original kotlin plugin
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
@ -94,6 +99,11 @@ xomrk {
|
||||
kotlin {
|
||||
// same as with original kotlin plugin
|
||||
}
|
||||
|
||||
// lazily enables `maven-publish` if not yet
|
||||
publishing {
|
||||
// same as with original kotlin plugin
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -45,8 +45,8 @@ kotlin {
|
||||
jvmMain {
|
||||
dependencies {
|
||||
compileOnly("dev.gradleplugins:gradle-api:${versions.getProperty("gradle")}")
|
||||
implementation("${group}:kotlin-mpp-gradle-build-helper:${targetKotlinVersion}")
|
||||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:${targetKotlinVersion}")
|
||||
api("${group}:kotlin-mpp-gradle-build-helper:${version}")
|
||||
api("org.jetbrains.kotlin:kotlin-gradle-plugin:${targetKotlinVersion}")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user