aboutsummaryrefslogtreecommitdiff
path: root/all
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-06-06 13:56:55 -0700
committerGitHub <noreply@github.com>2017-06-06 13:56:55 -0700
commit80ec0c120bb133b3d3747406be7e4c543b9e0446 (patch)
tree94d30b9612fd44408026455597ac7c76492536b2 /all
parent84d0f46e88faa89c0d822a73a7a610b9ac1bc471 (diff)
downloadopencensus-java-80ec0c120bb133b3d3747406be7e4c543b9e0446.tar.gz
Move internal & common & trace to the new package io.opencensus (#339)
Diffstat (limited to 'all')
-rw-r--r--all/build.gradle9
1 files changed, 5 insertions, 4 deletions
diff --git a/all/build.gradle b/all/build.gradle
index e1acc774..33189277 100644
--- a/all/build.gradle
+++ b/all/build.gradle
@@ -14,9 +14,10 @@ buildscript {
// TODO(bdrutu): core_impl_android subproject currently isn't included because Javadoc cannot
// handle multiple classes with the same name, such as StatsManagerImpl.
def subprojects = [
- project(':core'),
- project(':core_impl'),
- project(':core_impl_java'),
+ project(':opencensus-api'),
+ project(':core'),
+ project(':core_impl'),
+ project(':core_impl_java'),
]
for (subproject in rootProject.subprojects) {
@@ -49,7 +50,7 @@ task jacocoMerge(type: JacocoMerge) {
mustRunAfter(subprojects.jacocoTestReport.mustRunAfter)
destinationFile = file("${buildDir}/jacoco/test.exec")
executionData = files(subprojects.jacocoTestReport.executionData)
- .filter { f -> f.exists() }
+ .filter { f -> f.exists() }
}
jacocoTestReport {