From 732ed305db1914a5dcd950f824e3fcf7d3369529 Mon Sep 17 00:00:00 2001 From: Colin Alworth Date: Thu, 15 Sep 2022 10:58:47 -0500 Subject: [PATCH] Package proto files in the top level of the jar based on them (#2844) This follows the pattern in use by flight-core with its Flight.proto file. Fixes #2840 --- proto/proto-backplane-grpc/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proto/proto-backplane-grpc/build.gradle b/proto/proto-backplane-grpc/build.gradle index 769bd169b1b..4a5e99f1cc6 100644 --- a/proto/proto-backplane-grpc/build.gradle +++ b/proto/proto-backplane-grpc/build.gradle @@ -105,6 +105,9 @@ sourceSets { srcDir 'build/generated/source/proto/main/grpc' srcDir 'build/generated/source/proto/main/java' } + resources { + srcDir 'src/main/proto/deephaven/proto' + } } }