aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-03-24 09:50:38 -0700
committerGitHub <noreply@github.com>2017-03-24 09:50:38 -0700
commit9118e1e07df8fce5a3f7d6df6950df7afb3ba894 (patch)
tree88e0d0fdbdcb8500cc626dbe086172bd37ba3e42 /settings.gradle
parent14920b483eb85d440c1f501eda21023d15a7ea6f (diff)
downloadopencensus-java-9118e1e07df8fce5a3f7d6df6950df7afb3ba894.tar.gz
Change project name to be instrumentation-java. Helps IDEs to have the same name as the main directory. (#169)
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle18
1 files changed, 9 insertions, 9 deletions
diff --git a/settings.gradle b/settings.gradle
index 68cd7afc..0981396f 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,15 +1,15 @@
-rootProject.name = "instrumentation"
-include ":instrumentation-all"
-include ":instrumentation-benchmarks"
-include ":instrumentation-core"
-include ":instrumentation-core-impl"
+rootProject.name = "instrumentation-java"
+include ":instrumentation-java-all"
+include ":instrumentation-java-benchmarks"
+include ":instrumentation-java-core"
+include ":instrumentation-java-core-impl"
include ":proto"
include ":shared"
-project(':instrumentation-all').projectDir = "$rootDir/all" as File
-project(':instrumentation-benchmarks').projectDir = "$rootDir/benchmarks" as File
-project(':instrumentation-core').projectDir = "$rootDir/core" as File
-project(':instrumentation-core-impl').projectDir = "$rootDir/core_impl" as File
+project(':instrumentation-java-all').projectDir = "$rootDir/all" as File
+project(':instrumentation-java-benchmarks').projectDir = "$rootDir/benchmarks" as File
+project(':instrumentation-java-core').projectDir = "$rootDir/core" as File
+project(':instrumentation-java-core-impl').projectDir = "$rootDir/core_impl" as File
project(':proto').projectDir = "$rootDir/proto" as File
project(':shared').projectDir = "$rootDir/shared" as File