Repository: geode Updated Branches: refs/heads/feature/GEODE-2580 e3a752dcf -> ceabf07aa
GEODE-2580: Amended gradle build to include protobuf files as src files Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/ceabf07a Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/ceabf07a Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/ceabf07a Branch: refs/heads/feature/GEODE-2580 Commit: ceabf07aafdfe80a424ba90cfc42fc4c3ce74594 Parents: e3a752d Author: Udo Kohlmeyer <[email protected]> Authored: Tue May 30 08:12:20 2017 -0700 Committer: Udo Kohlmeyer <[email protected]> Committed: Tue May 30 08:12:20 2017 -0700 ---------------------------------------------------------------------- geode-client-protobuf/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/ceabf07a/geode-client-protobuf/build.gradle ---------------------------------------------------------------------- diff --git a/geode-client-protobuf/build.gradle b/geode-client-protobuf/build.gradle index 79932ae..56a97c9 100644 --- a/geode-client-protobuf/build.gradle +++ b/geode-client-protobuf/build.gradle @@ -88,6 +88,13 @@ protobuf { // } } +sourceSets { + main { + java { + srcDir 'build/generated-src/proto/main/java' + } + } +} // let IntelliJ know where the generated sources are. idea { module {
