Skip to content

Commit 2318b8d

Browse files
author
Luis Sanchez
committed
[FAB-3267] add kv_query_result proto to java shim
Change-Id: I05a59d43e8524fc74e2b8bf10228814b4c3a04d1 Signed-off-by: Luis Sanchez <[email protected]>
1 parent 6458126 commit 2318b8d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

core/chaincode/shim/java/build.gradle

+10
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ task copyProtos(type:Copy){
103103
include 'common.proto'
104104
}
105105
}
106+
into "ledger/queryresult", {
107+
from ("${rootDir}/protos/ledger/queryresult"){
108+
include 'kv_query_result.proto'
109+
}
110+
}
106111
into "${projectDir}/src/main/proto"
107112
}
108113

@@ -121,6 +126,11 @@ task copyProtosFromDevEnv(type:Copy){
121126
include 'common.proto'
122127
}
123128
}
129+
into "ledger/queryresult", {
130+
from ("../../../../protos/ledger/queryresult"){
131+
include 'kv_query_result.proto'
132+
}
133+
}
124134
into "${projectDir}/protos"
125135
}
126136

0 commit comments

Comments
 (0)