aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-05-20 13:23:11 -0700
committerEric Anderson <ejona@google.com>2015-05-20 14:57:36 -0700
commite03d5c0210da28c02907f7bc5e647cbdc77d3831 (patch)
tree5034ed54c3dbd2edcf8e7ef152a07cfe0c5c1fdc /settings.gradle
parent7a7450fff94472cb92c8fba9bc3cc3ac84b7389c (diff)
downloadgrpc-grpc-java-e03d5c0210da28c02907f7bc5e647cbdc77d3831.tar.gz
Rename integration-testing to interop-testing
"Interoperability" is a more appropriate name for the tests, since they are used for testing across different implementations. They will do a bit of integration testing, like for auth, but this is a smaller scale. It seems the other languages (Go, C++, Node, PHP, Python, Ruby) are using "interop" to describe the tests, and the test case specifications document is named with "interop". After this change, C# will be the only language calling them "integration" tests. This change just renames the folder and artifact. We can change the internal package names later. However, once we do a release, old artifact names will live forever in Maven Central.
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 be6bdcaab..27d128e4a 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -7,7 +7,7 @@ include ":grpc-protobuf"
include ":grpc-protobuf-nano"
include ":grpc-netty"
include ":grpc-testing"
-include ":grpc-integration-testing"
+include ":grpc-interop-testing"
include ":grpc-all"
include ":grpc-benchmarks"
include ":grpc-examples"
@@ -20,7 +20,7 @@ project(':grpc-protobuf').projectDir = "$rootDir/protobuf" as File
project(':grpc-protobuf-nano').projectDir = "$rootDir/protobuf-nano" as File
project(':grpc-netty').projectDir = "$rootDir/netty" as File
project(':grpc-testing').projectDir = "$rootDir/testing" as File
-project(':grpc-integration-testing').projectDir = "$rootDir/integration-testing" as File
+project(':grpc-interop-testing').projectDir = "$rootDir/interop-testing" as File
project(':grpc-all').projectDir = "$rootDir/all" as File
project(':grpc-benchmarks').projectDir = "$rootDir/benchmarks" as File
project(':grpc-examples').projectDir = "$rootDir/examples" as File