aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-08-28 11:57:56 -0700
committerGitHub <noreply@github.com>2017-08-28 11:57:56 -0700
commit778d3b545448116d0247265beff3b337df2f2eab (patch)
tree6563a2944bd2e364af3b9e0e7a24187f85cde5c7 /settings.gradle
parent333574d1e6a8b30700adb49e4116e3fdb75f8f3e (diff)
downloadopencensus-java-778d3b545448116d0247265beff3b337df2f2eab.tar.gz
Add a Stackdriver trace exporter using V1 Stackdriver Trace API. (#554)
* Add a Stackdriver trace exporter using V1 Stackdriver Trace API. * Change to use google cloud java for the Stackdriver Client. * Fix more comments. * Few fixes in the README.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle7
1 files changed, 5 insertions, 2 deletions
diff --git a/settings.gradle b/settings.gradle
index d860ad3a..8bfeb8d1 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -5,7 +5,9 @@ include ":opencensus-impl-core"
include ":opencensus-impl-lite"
include ":opencensus-impl"
include ":opencensus-testing"
-include ":opencensus-trace-logging-exporter"
+include ":opencensus-exporter-trace-logging"
+include ":opencensus-exporter-trace-stackdriver"
+include ":opencensus-agent"
include ":all"
include ":core"
include ":core_impl"
@@ -18,8 +20,9 @@ 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
project(':opencensus-testing').projectDir = "$rootDir/testing" as File
-project(':opencensus-trace-logging-exporter').projectDir = "$rootDir/exporters/trace_logging" as File
project(':opencensus-contrib-agent').projectDir = "$rootDir/contrib/agent" as File
+project(':opencensus-exporter-trace-logging').projectDir = "$rootDir/exporters/trace_logging" as File
+project(':opencensus-exporter-trace-stackdriver').projectDir = "$rootDir/exporters/trace_stackdriver" as File
// Java8 projects only
if (JavaVersion.current().isJava8Compatible()) {