aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorKun Zhang <zhangkun@google.com>2016-09-01 16:00:43 -0700
committerKun Zhang <zhangkun@google.com>2016-09-02 13:18:35 -0700
commitc4f7f5c4fd3d4f2909ea92f879c4b882098032a9 (patch)
tree2c69ec97ce39765f6e408aa93a7eae20d2d4fd90 /settings.gradle
parent58d78dd0aae93b23d9351cd03876baaf37164b73 (diff)
downloadgrpc-grpc-java-c4f7f5c4fd3d4f2909ea92f879c4b882098032a9.tar.gz
core: split Context into a separate grpc-context artifact.
The Context API is not particularly gRPC-specific, and will be used by Census as its context propagation mechanism. Removed all dependencies to make it easy for other libraries to depend on.
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 6c7034ae1..d9ea44062 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,5 +1,6 @@
rootProject.name = "grpc"
include ":grpc-core"
+include ":grpc-context"
include ":grpc-stub"
include ":grpc-auth"
include ":grpc-okhttp"
@@ -16,6 +17,7 @@ include ":grpc-services"
include ":grpc-thrift"
project(':grpc-core').projectDir = "$rootDir/core" as File
+project(':grpc-context').projectDir = "$rootDir/context" 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