aboutsummaryrefslogtreecommitdiff
path: root/all
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-05-12 12:01:53 -0700
committerGitHub <noreply@github.com>2017-05-12 12:01:53 -0700
commit5a6e3454f63fcbdc598f5af10c7842d32bacfe26 (patch)
treea1b7b8d583a26f14121823f28f2fc76210c469f5 /all
parentcc416d09e5a2000749568a8e57e924a7444c094e (diff)
downloadopencensus-java-5a6e3454f63fcbdc598f5af10c7842d32bacfe26.tar.gz
Rename gradle subprojects name to match the directories name. (#298)
* Rename gradle subprojects name to match the directories name. Change the api jar name to match the maven artifact. Update gradle projects name in travis.
Diffstat (limited to 'all')
-rw-r--r--all/build.gradle13
1 files changed, 5 insertions, 8 deletions
diff --git a/all/build.gradle b/all/build.gradle
index 143e4cb3..550b924c 100644
--- a/all/build.gradle
+++ b/all/build.gradle
@@ -11,15 +11,12 @@ buildscript {
}
}
-// TODO(sebright): Look into handling instrumentation-java-core-impl-java-7,
-// instrumentation-java-core-impl-java-8, and
-// instrumentation-java-core-impl-android. 'subprojects' currently doesn't
-// include all directories, because Javadoc cannot handle multiple classes with
-// the same name, such as StatsManagerImpl.
+// 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(':instrumentation-java-core'),
- project(':instrumentation-java-core-impl'),
- project(':instrumentation-java-core-impl-java'),
+ project(':core'),
+ project(':core_impl'),
+ project(':core_impl_java'),
]
for (subproject in rootProject.subprojects) {