24 lines
608 B
Groovy
24 lines
608 B
Groovy
plugins {
|
|
id "gradle-plugin-common-configuration"
|
|
id "jps-compatible"
|
|
}
|
|
|
|
pill {
|
|
variant = 'FULL'
|
|
}
|
|
|
|
dependencies {
|
|
api project(':kotlin-gradle-plugin-api')
|
|
api project(':kotlin-gradle-plugin-model')
|
|
|
|
compileOnly project(':compiler')
|
|
compileOnly project(':kotlin-sam-with-receiver-compiler-plugin')
|
|
|
|
testApi gradleApi()
|
|
testApi DependenciesKt.commonDependency(project, "junit")
|
|
|
|
embedded(project(":kotlin-sam-with-receiver-compiler-plugin")) { transitive = false }
|
|
}
|
|
|
|
ArtifactsKt.runtimeJar(project, EmbeddableKt.rewriteDefaultJarDepsToShadedCompiler(project, {}), {})
|