blob: e7a8c4c4b6392e8aacbe7822b8281d2b5edefd5c [file] [log] [blame]
Bogdan Drutu3b740702017-06-15 11:29:30 -07001rootProject.name = "opencensus-java"
Bogdan Drutu80ec0c12017-06-06 13:56:55 -07002
3include ":opencensus-api"
Bogdan Drutu3b740702017-06-15 11:29:30 -07004include ":opencensus-impl-core"
5include ":opencensus-impl-lite"
6include ":opencensus-impl"
Bogdan Drutu5a6e3452017-05-12 12:01:53 -07007include ":all"
8include ":core"
9include ":core_impl"
10include ":core_impl_java"
11include ":core_impl_android"
Bogdan Drutu00202c02017-03-21 10:52:28 -070012
Bogdan Drutu80ec0c12017-06-06 13:56:55 -070013project(':opencensus-api').projectDir = "$rootDir/api" as File
Bogdan Drutu3b740702017-06-15 11:29:30 -070014project(':opencensus-impl-core').projectDir = "$rootDir/impl_core" as File
15project(':opencensus-impl-lite').projectDir = "$rootDir/impl_lite" as File
16project(':opencensus-impl').projectDir = "$rootDir/impl" as File
Bogdan Drutu80ec0c12017-06-06 13:56:55 -070017
Bogdan Drutub0e60502017-03-22 19:23:35 -070018// Java8 projects only
19if (JavaVersion.current().isJava8Compatible()) {
Bogdan Drutu5a6e3452017-05-12 12:01:53 -070020 include ":examples"
21 include ":benchmarks"
Bogdan Drutub0e60502017-03-22 19:23:35 -070022
Bogdan Drutu5a6e3452017-05-12 12:01:53 -070023 project(':examples').projectDir = "$rootDir/examples" as File
24 project(':benchmarks').projectDir = "$rootDir/benchmarks" as File
Kristen Kozak9ea92f12017-04-27 13:12:45 -070025}