From 2652c385b9d572888d02ece141a6c55fe26e7364 Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Tue, 7 Jan 2025 10:58:45 +1100 Subject: [PATCH] chore: include jcm code gen files in build-jvm watch list (#3912) --- Justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Justfile b/Justfile index a0af1069cf..169092a843 100644 --- a/Justfile +++ b/Justfile @@ -34,11 +34,15 @@ PROTOS_OUT := "backend/protos/xyz/block/ftl/console/v1/console.pb.go " + \ CONSOLE_ROOT + "/src/protos/xyz/block/ftl/publish/v1/publish_pb.ts" JVM_RUNTIME_IN := "jvm-runtime/ftl-runtime/pom.xml " + \ "jvm-runtime/ftl-runtime/java/runtime/src " + \ + "jvm-runtime/ftl-runtime/java/deployment/src " + \ "jvm-runtime/ftl-runtime/kotlin/runtime/src " + \ + "jvm-runtime/ftl-runtime/kotlin/deployment/src " + \ "jvm-runtime/ftl-runtime/common/deployment/src " + \ "jvm-runtime/ftl-runtime/common/runtime/src" JVM_RUNTIME_OUT := "jvm-runtime/ftl-runtime/java/runtime/target/ftl-java-runtime-1.0-SNAPSHOT.jar " + \ + "jvm-runtime/ftl-runtime/java/deployment/target/ftl-java-runtime-deployment-1.0-SNAPSHOT.jar " + \ "jvm-runtime/ftl-runtime/kotlin/runtime/target/ftl-kotlin-runtime-1.0-SNAPSHOT.jar " + \ + "jvm-runtime/ftl-runtime/kotlin/deployment/target/ftl-kotlin-runtime-deployment-1.0-SNAPSHOT.jar " + \ "jvm-runtime/ftl-runtime/common/deployment/target/ftl-jvm-runtime-deployment-1.0-SNAPSHOT.jar " + \ "jvm-runtime/ftl-runtime/common/runtime/target/ftl-jvm-runtime-1.0-SNAPSHOT.jar"