Skip to content

Commit

Permalink
[FAB-3267] add kv_query_result proto to java shim
Browse files Browse the repository at this point in the history
Change-Id: I05a59d43e8524fc74e2b8bf10228814b4c3a04d1
Signed-off-by: Luis Sanchez <sanchezl@us.ibm.com>
  • Loading branch information
Luis Sanchez committed Apr 26, 2017
1 parent 6458126 commit 2318b8d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/chaincode/shim/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ task copyProtos(type:Copy){
include 'common.proto'
}
}
into "ledger/queryresult", {
from ("${rootDir}/protos/ledger/queryresult"){
include 'kv_query_result.proto'
}
}
into "${projectDir}/src/main/proto"
}

Expand All @@ -121,6 +126,11 @@ task copyProtosFromDevEnv(type:Copy){
include 'common.proto'
}
}
into "ledger/queryresult", {
from ("../../../../protos/ledger/queryresult"){
include 'kv_query_result.proto'
}
}
into "${projectDir}/protos"
}

Expand Down

0 comments on commit 2318b8d

Please sign in to comment.