forked from census-instrumentation/opencensus-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
19 lines (16 loc) · 794 Bytes
/
settings.gradle
File metadata and controls
19 lines (16 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
rootProject.name = "instrumentation-java"
include ":instrumentation-java-all"
include ":instrumentation-java-benchmarks"
include ":instrumentation-java-core"
include ":instrumentation-java-core-impl"
include ":shared"
project(':instrumentation-java-all').projectDir = "$rootDir/all" as File
project(':instrumentation-java-benchmarks').projectDir = "$rootDir/benchmarks" as File
project(':instrumentation-java-core').projectDir = "$rootDir/core" as File
project(':instrumentation-java-core-impl').projectDir = "$rootDir/core_impl" as File
project(':shared').projectDir = "$rootDir/shared" as File
// Java8 projects only
if (JavaVersion.current().isJava8Compatible()) {
include ":instrumentation-examples"
project(':instrumentation-examples').projectDir = "$rootDir/examples" as File
}