From 46fa5cfae0244df8ffc0ec6335da0c6f732981fc Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Wed, 13 Dec 2017 19:09:17 +0100 Subject: [PATCH] Add dependency on compiler dist from jps-tests Otherwise, because there's no explicit dependency and the JPS plugin loads the compiler from dist, the compiler jar is not rebuilt between changes in compiler code and running jps-tests --- jps-plugin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/jps-plugin/build.gradle.kts b/jps-plugin/build.gradle.kts index f93fb866aa3..4efc6140d0d 100644 --- a/jps-plugin/build.gradle.kts +++ b/jps-plugin/build.gradle.kts @@ -42,6 +42,7 @@ sourceSets { } projectTest { + dependsOn(":kotlin-compiler:dist") workingDir = rootDir }