aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2016-06-24 18:18:06 -0700
committerEric Anderson <ejona@google.com>2016-07-11 09:20:25 -0700
commitd7bf67e01f9aead16983de2a4500bb3f2b1dd00c (patch)
treea1b21fddae75d4eb98e961704e505a96791c6ba0 /settings.gradle
parent3c03eb79ecb4ee75054d235368cd3d2ff73e5147 (diff)
downloadgrpc-grpc-java-d7bf67e01f9aead16983de2a4500bb3f2b1dd00c.tar.gz
examples: Provide Maven and Gradle build files
The examples are no longer part of the normal build, although they are built with Travis. The examples now include their own copy of the gradle wrapper to ease usage from IDEs which can now properly detect the correct version of gradle to use. The build files were generated using "gradle init" and "mvn archetype:generate" and then modified following our README. Fixes #1414
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle2
1 files changed, 0 insertions, 2 deletions
diff --git a/settings.gradle b/settings.gradle
index 8c199acb3..42496c2ee 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -13,7 +13,6 @@ include ":grpc-interop-testing"
include ":grpc-all"
include ":grpc-benchmarks"
include ":grpc-services"
-include ":grpc-examples"
project(':grpc-core').projectDir = "$rootDir/core" as File
project(':grpc-stub').projectDir = "$rootDir/stub" as File
@@ -29,7 +28,6 @@ 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-services').projectDir = "$rootDir/services" as File
-project(':grpc-examples').projectDir = "$rootDir/examples" as File
if (settings.hasProperty('skipCodegen') && skipCodegen.toBoolean()) {
println '*** Skipping the build of codegen and compilation of proto files because skipCodegen=true'