aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-08-16 18:56:27 -0700
committerGitHub <noreply@github.com>2017-08-16 18:56:27 -0700
commita77f1b63f3229caa850d17758dfe67c662538c9b (patch)
tree71fc02ecb5504f652bf43910a5c6fcc1394155d0 /settings.gradle
parent468ece14992f5ca91df4686c637ca8dcda48a26e (diff)
downloadopencensus-java-a77f1b63f3229caa850d17758dfe67c662538c9b.tar.gz
Add initial implementation of the tracez page. (#517)
* Add initial implementation of the tracez page. * Fix HTML when premature return. Add DOCTYPE and charset. * URLEncode the given spanName. * Build zpages only for java8. * Move Tester->ZPagesTester, add tests for query parsing. * Fix more comments.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/settings.gradle b/settings.gradle
index 09a75287..454a57d5 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,6 +1,5 @@
rootProject.name = "opencensus-java"
-include ":opencensus-agent"
include ":opencensus-api"
include ":opencensus-impl-core"
include ":opencensus-impl-lite"
@@ -12,20 +11,21 @@ include ":core"
include ":core_impl"
include ":core_impl_java"
include ":core_impl_android"
+include ":opencensus-agent"
-project(':opencensus-agent').projectDir = "$rootDir/contrib/agent" as File
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
project(':opencensus-testing').projectDir = "$rootDir/testing" as File
project(':opencensus-trace-logging-exporter').projectDir = "$rootDir/exporters/trace_logging" as File
+project(':opencensus-agent').projectDir = "$rootDir/contrib/agent" as File
// Java8 projects only
if (JavaVersion.current().isJava8Compatible()) {
include ":examples"
include ":benchmarks"
+ include ":opencensus-zpages"
- project(':examples').projectDir = "$rootDir/examples" as File
- project(':benchmarks').projectDir = "$rootDir/benchmarks" as File
+ project(':opencensus-zpages').projectDir = "$rootDir/contrib/zpages" as File
}