Skip to content

Commit fa4d9c1

Browse files
committed
move compiler plugin
1 parent dc0aa1a commit fa4d9c1

File tree

8 files changed

+4
-7
lines changed

8 files changed

+4
-7
lines changed

buildSrc/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ tasks.withType<KotlinCompile> {
2020

2121

2222
tasks.build {
23-
dependsOn(":compiler-plugin:kotlin-plugin:publishToMavenLocal")
2423

2524
dependsOn(":gradle-plugin:publishToMavenLocal")
2625
}

buildSrc/settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
include(":compiler-plugin:kotlin-plugin")
21

32
include("gradle-plugin")
43

File renamed without changes.
File renamed without changes.

lib/build.gradle.kts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ kotlin {
1313
linuxX64("linux")
1414
js()
1515
sourceSets {
16-
val commonMain by getting {
17-
dependencies {
18-
19-
}
20-
}
16+
val commonMain by getting {}
2117

2218
val jsMain by getting {
2319

@@ -43,4 +39,6 @@ kotlin {
4339

4440
tasks.build {
4541
dependsOn(":kotlin-native-plugin:publishToMavenLocal")
42+
dependsOn(":kotlin-plugin:publishToMavenLocal")
43+
4644
}

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include(":kotlin-native-plugin")
2+
include(":kotlin-plugin")
23

34
include(":lib")

0 commit comments

Comments
 (0)