aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authornathanmittler <nathanmittler@google.com>2014-12-15 09:58:05 -0800
committerEric Anderson <ejona@google.com>2015-01-08 14:43:21 -0800
commit164b734aa9c9e4c1313b2b908e8f0fdb2b4242c2 (patch)
tree4994f43ce91ef7010d6314c909a45b4dd72c4e81 /settings.gradle
parent66ce6677b2b7bc631f835da5016f1aa812a03a0d (diff)
downloadgrpc-grpc-java-164b734aa9c9e4c1313b2b908e8f0fdb2b4242c2.tar.gz
Adding gradle build for Java grpc
------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82152044
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle18
1 files changed, 18 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 000000000..2d5320a64
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,18 @@
+rootProject.name = "stubby"
+include ":stubby-core"
+include ":stubby-stub"
+include ":stubby-auth"
+include ":stubby-okhttp"
+include ":stubby-netty"
+include ":stubby-testing"
+include ":stubby-integration-testing"
+include ":stubby-all"
+
+project(':stubby-core').projectDir = "$rootDir/core" as File
+project(':stubby-stub').projectDir = "$rootDir/stub" as File
+project(':stubby-auth').projectDir = "$rootDir/auth" as File
+project(':stubby-okhttp').projectDir = "$rootDir/okhttp" as File
+project(':stubby-netty').projectDir = "$rootDir/netty" as File
+project(':stubby-testing').projectDir = "$rootDir/testing" as File
+project(':stubby-integration-testing').projectDir = "$rootDir/integration-testing" as File
+project(':stubby-all').projectDir = "$rootDir/all" as File