diff --git a/compiler/tests-common/build.gradle.kts b/compiler/tests-common/build.gradle.kts index 36dd23be2c5..5f0fda4a8df 100644 --- a/compiler/tests-common/build.gradle.kts +++ b/compiler/tests-common/build.gradle.kts @@ -10,6 +10,7 @@ dependencies { testCompile(project(":core:descriptors.jvm")) testCompile(project(":core:deserialization")) testCompile(project(":compiler:util")) + testCompile(project(":compiler:tests-mutes")) testCompile(project(":compiler:backend")) testCompile(project(":compiler:fir:tree")) testCompile(project(":compiler:fir:raw-fir:psi2fir")) diff --git a/compiler/tests-mutes/build.gradle.kts b/compiler/tests-mutes/build.gradle.kts new file mode 100644 index 00000000000..efd3a7e2c40 --- /dev/null +++ b/compiler/tests-mutes/build.gradle.kts @@ -0,0 +1,15 @@ +plugins { + kotlin("jvm") + id("jps-compatible") +} + +dependencies { + api(kotlinStdlib()) +} + +sourceSets { + "main" { + projectDefault() + } + "test" {} +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 9acc2706d8a..c97ec9fa898 100644 --- a/settings.gradle +++ b/settings.gradle @@ -127,6 +127,7 @@ include ":benchmarks", ":compiler:incremental-compilation-impl", ":compiler:android-tests", ":compiler:tests-common", + ":compiler:tests-mutes", ":compiler:tests-common-jvm6", ":compiler:tests-against-klib", ":dukat",