Bogdan Drutu | 3b74070 | 2017-06-15 11:29:30 -0700 | [diff] [blame] | 1 | rootProject.name = "opencensus-java" |
Bogdan Drutu | 80ec0c1 | 2017-06-06 13:56:55 -0700 | [diff] [blame] | 2 | |
| 3 | include ":opencensus-api" |
Bogdan Drutu | 3b74070 | 2017-06-15 11:29:30 -0700 | [diff] [blame] | 4 | include ":opencensus-impl-core" |
| 5 | include ":opencensus-impl-lite" |
| 6 | include ":opencensus-impl" |
Bogdan Drutu | 5a6e345 | 2017-05-12 12:01:53 -0700 | [diff] [blame] | 7 | include ":all" |
| 8 | include ":core" |
| 9 | include ":core_impl" |
| 10 | include ":core_impl_java" |
| 11 | include ":core_impl_android" |
Bogdan Drutu | 00202c0 | 2017-03-21 10:52:28 -0700 | [diff] [blame] | 12 | |
Bogdan Drutu | 80ec0c1 | 2017-06-06 13:56:55 -0700 | [diff] [blame] | 13 | project(':opencensus-api').projectDir = "$rootDir/api" as File |
Bogdan Drutu | 3b74070 | 2017-06-15 11:29:30 -0700 | [diff] [blame] | 14 | project(':opencensus-impl-core').projectDir = "$rootDir/impl_core" as File |
| 15 | project(':opencensus-impl-lite').projectDir = "$rootDir/impl_lite" as File |
| 16 | project(':opencensus-impl').projectDir = "$rootDir/impl" as File |
Bogdan Drutu | 80ec0c1 | 2017-06-06 13:56:55 -0700 | [diff] [blame] | 17 | |
Bogdan Drutu | b0e6050 | 2017-03-22 19:23:35 -0700 | [diff] [blame] | 18 | // Java8 projects only |
| 19 | if (JavaVersion.current().isJava8Compatible()) { |
Bogdan Drutu | 5a6e345 | 2017-05-12 12:01:53 -0700 | [diff] [blame] | 20 | include ":examples" |
| 21 | include ":benchmarks" |
Bogdan Drutu | b0e6050 | 2017-03-22 19:23:35 -0700 | [diff] [blame] | 22 | |
Bogdan Drutu | 5a6e345 | 2017-05-12 12:01:53 -0700 | [diff] [blame] | 23 | project(':examples').projectDir = "$rootDir/examples" as File |
| 24 | project(':benchmarks').projectDir = "$rootDir/benchmarks" as File |
Kristen Kozak | 9ea92f1 | 2017-04-27 13:12:45 -0700 | [diff] [blame] | 25 | } |