We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ada6cc4 commit 2851e16Copy full SHA for 2851e16
buildSrc/build.gradle.kts
@@ -19,7 +19,7 @@ import com.github.vlsi.gradle.properties.dsl.props
19
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
20
21
plugins {
22
- java
+ `embedded-kotlin`
23
`kotlin-dsl` apply false
24
id("com.github.autostyle")
25
id("com.github.vlsi.gradle-extensions")
@@ -41,7 +41,9 @@ allprojects {
41
}
42
43
fun Project.applyKotlinProjectConventions() {
44
- apply(plugin = "org.gradle.kotlin.kotlin-dsl")
+ if (project != rootProject) {
45
+ apply(plugin = "org.gradle.kotlin.kotlin-dsl")
46
+ }
47
48
plugins.withType<KotlinDslPlugin> {
49
configure<KotlinDslPluginOptions> {
0 commit comments