aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-01-29 15:00:58 -0800
committerEric Anderson <ejona@google.com>2015-01-30 10:19:32 -0800
commitfb28ad235b863616f90a32cab4ee60bfeb793465 (patch)
treefe26612aef29834aef44e16c473e27c1d0f9826c /settings.gradle
parentd0e883ac209a238642b2030404ca6f81e82ad483 (diff)
downloadgrpc-grpc-java-fb28ad235b863616f90a32cab4ee60bfeb793465.tar.gz
Improve Gradle build of protoc grpc plugin
A Gradle protoc plugin is used for generating and compiling the grpc codegen. The code organization was changed to match what Gradle expects. Proto 3 is now required.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
index ccf44c58f..41d99c09e 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -5,6 +5,7 @@ include ":grpc-auth"
include ":grpc-okhttp"
include ":grpc-netty"
include ":grpc-testing"
+include ":grpc-compiler"
include ":grpc-integration-testing"
include ":grpc-all"
@@ -14,5 +15,6 @@ project(':grpc-auth').projectDir = "$rootDir/auth" as File
project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
project(':grpc-netty').projectDir = "$rootDir/netty" as File
project(':grpc-testing').projectDir = "$rootDir/testing" as File
+project(':grpc-compiler').projectDir = "$rootDir/compiler" as File
project(':grpc-integration-testing').projectDir = "$rootDir/integration-testing" as File
project(':grpc-all').projectDir = "$rootDir/all" as File