Skip to content

Commit dc0aa1a

Browse files
committed
move compiler plugin
1 parent 91067cd commit dc0aa1a

File tree

8 files changed

+7
-3
lines changed

8 files changed

+7
-3
lines changed

buildSrc/build.gradle.kts

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

2222
tasks.build {
2323
dependsOn(":compiler-plugin:kotlin-plugin:publishToMavenLocal")
24-
dependsOn(":compiler-plugin:kotlin-native-plugin:publishToMavenLocal")
2524

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

buildSrc/settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
include(":compiler-plugin:kotlin-plugin")
2-
include(":compiler-plugin:kotlin-native-plugin")
32

43
include("gradle-plugin")
54

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package de.jensklingenberg.common
22

3-
import com.google.auto.service.AutoService
43
import org.jetbrains.kotlin.compiler.plugin.AbstractCliOption
54
import org.jetbrains.kotlin.compiler.plugin.CliOption
65
import org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor

lib/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,8 @@ kotlin {
3939

4040
}
4141
}
42+
43+
44+
tasks.build {
45+
dependsOn(":kotlin-native-plugin:publishToMavenLocal")
46+
}

settings.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
include(":kotlin-native-plugin")
2+
13
include(":lib")

0 commit comments

Comments
 (0)