aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-04-10 16:35:23 -0700
committerEric Anderson <ejona@google.com>2015-04-10 16:35:23 -0700
commit3666de4427460a307bfb86a7f93b3a04cb28f8c4 (patch)
tree7d81ac8c934937f26ab9079c3389db1315b1f9f2 /settings.gradle
parente23f899491461e96271b5675298947b03f1527c4 (diff)
downloadgrpc-grpc-java-3666de4427460a307bfb86a7f93b3a04cb28f8c4.tar.gz
Use more precise names for protobuf and nano
io.grpc.nano sort of seems like a "small" version of grpc-java. And io.grpc.proto could also mean multiple things. Using "protobuf" and "protobuf nano" gets us consistent names that are still understandable, predictable, and more similar to protobuf project itself.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings.gradle b/settings.gradle
index a36c5e906..a98b52efc 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -4,7 +4,7 @@ include ":grpc-stub"
include ":grpc-auth"
include ":grpc-okhttp"
include ":grpc-protobuf"
-include ":grpc-nano"
+include ":grpc-protobuf-nano"
include ":grpc-netty"
include ":grpc-testing"
include ":grpc-compiler"
@@ -18,7 +18,7 @@ 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-protobuf-nano').projectDir = "$rootDir/nano" 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