From 3b3a7f45667160ecfa26bc5efc29fac78f2ccb7c Mon Sep 17 00:00:00 2001 From: Nikita Bobko Date: Wed, 22 Dec 2021 16:14:20 +0100 Subject: [PATCH] Add jps-common/test source root --- jps/jps-common/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jps/jps-common/build.gradle.kts b/jps/jps-common/build.gradle.kts index f59eca69fcd..5c9a207ff09 100644 --- a/jps/jps-common/build.gradle.kts +++ b/jps/jps-common/build.gradle.kts @@ -14,11 +14,13 @@ dependencies { compile(project(":native:frontend.native")) compileOnly(intellijDep()) compileOnly(jpsStandalone()) { includeJars("jps-model") } + + testCompile(commonDep("junit:junit")) } sourceSets { "main" { projectDefault() } - "test" {} + "test" { projectDefault() } } runtimeJar()