We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e345e60 commit 6295ee2Copy full SHA for 6295ee2
kotlin-codepoints-deluxe/build.gradle.kts
@@ -47,12 +47,13 @@ kotlin {
47
watchosSimulatorArm64()
48
49
sourceSets {
50
- val commonMain by getting {
+ commonMain {
51
dependencies {
52
api(project(":kotlin-codepoints"))
53
}
54
55
- val commonTest by getting {
+
56
+ commonTest {
57
58
implementation(kotlin("test"))
59
kotlin-codepoints/build.gradle.kts
@@ -49,15 +49,14 @@ kotlin {
- val commonMain by getting
val commonImplementation by creating {
60
- dependsOn(commonMain)
+ dependsOn(commonMain.get())
61
62
63
0 commit comments