aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-04-10 15:40:44 -0700
committerEric Anderson <ejona@google.com>2015-04-10 15:50:56 -0700
commite23f899491461e96271b5675298947b03f1527c4 (patch)
tree4b8955aa7d1b7f0ff9dc1afb572a0d97e6ec3b27 /settings.gradle
parent1e257c440eb6cecbb8d4382c19a7378dbaa0342f (diff)
downloadgrpc-grpc-java-e23f899491461e96271b5675298947b03f1527c4.tar.gz
Split protobuf into its own project
We don't want core to depend on protobuf.
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 c36ba1c33..a36c5e906 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -3,6 +3,7 @@ include ":grpc-core"
include ":grpc-stub"
include ":grpc-auth"
include ":grpc-okhttp"
+include ":grpc-protobuf"
include ":grpc-nano"
include ":grpc-netty"
include ":grpc-testing"
@@ -16,6 +17,7 @@ project(':grpc-core').projectDir = "$rootDir/core" as File
project(':grpc-stub').projectDir = "$rootDir/stub" as File
project(':grpc-auth').projectDir = "$rootDir/auth" as File
project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
+project(':grpc-protobuf').projectDir = "$rootDir/protobuf" as File
project(':grpc-nano').projectDir = "$rootDir/nano" as File
project(':grpc-netty').projectDir = "$rootDir/netty" as File
project(':grpc-testing').projectDir = "$rootDir/testing" as File