From b6d80a11498483b9c2fb7b66cb25159a918b15ab Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Mon, 7 Dec 2020 15:58:27 +0300 Subject: [PATCH] Build: Fix kotlin-compiler-internal-test-framework empty sources jar Should also pack pack test source set from :compiler:tests-common --- .../build.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/prepare/kotlin-compiler-internal-test-framework/build.gradle.kts b/prepare/kotlin-compiler-internal-test-framework/build.gradle.kts index a726d6e603162..6f57e54f2c77a 100644 --- a/prepare/kotlin-compiler-internal-test-framework/build.gradle.kts +++ b/prepare/kotlin-compiler-internal-test-framework/build.gradle.kts @@ -11,5 +11,11 @@ dependencies { publish() runtimeJar() -sourcesJar() + +sourcesJar { + from { + project(":compiler:tests-common").sourceSets["test"].allSource + } +} + javadocJar()