aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-06-15 11:29:30 -0700
committerGitHub <noreply@github.com>2017-06-15 11:29:30 -0700
commit3b74070f74a75e780828370126b713524eece13c (patch)
treeae6bc5deb968cbfab938b355718898c84fbb0826 /settings.gradle
parent461b4ed4a37e74a42c8ba6264807a15e36ab9dc6 (diff)
downloadopencensus-java-3b74070f74a75e780828370126b713524eece13c.tar.gz
Prepare the release of the opencensus library. (#357)
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/settings.gradle b/settings.gradle
index ade14ea5..e7a8c4c4 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,6 +1,9 @@
-rootProject.name = "instrumentation-java"
+rootProject.name = "opencensus-java"
include ":opencensus-api"
+include ":opencensus-impl-core"
+include ":opencensus-impl-lite"
+include ":opencensus-impl"
include ":all"
include ":core"
include ":core_impl"
@@ -8,6 +11,9 @@ include ":core_impl_java"
include ":core_impl_android"
project(':opencensus-api').projectDir = "$rootDir/api" as File
+project(':opencensus-impl-core').projectDir = "$rootDir/impl_core" as File
+project(':opencensus-impl-lite').projectDir = "$rootDir/impl_lite" as File
+project(':opencensus-impl').projectDir = "$rootDir/impl" as File
// Java8 projects only
if (JavaVersion.current().isJava8Compatible()) {