aboutsummaryrefslogtreecommitdiffstats
path: root/settings.gradle
blob: e7881b0f197e8f9166c1f09ce5820da178de3664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
rootProject.name = "instrumentation-java"
include ":all"
include ":core"
include ":core_impl"
include ":core_impl_java"
include ":core_impl_android"

// Java8 projects only
if (JavaVersion.current().isJava8Compatible()) {
    include ":examples"
    include ":benchmarks"

    project(':examples').projectDir = "$rootDir/examples" as File
    project(':benchmarks').projectDir = "$rootDir/benchmarks" as File
}