forked from perfmark/perfmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
19 lines (17 loc) · 765 Bytes
/
settings.gradle
File metadata and controls
19 lines (17 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
rootProject.name = 'perfmark'
include ":perfmark-api"
include ":perfmark-impl"
include ":perfmark-java6"
include ":perfmark-java7"
include ":perfmark-java9"
include ":perfmark-tracewriter"
include ":perfmark-agent"
include ":perfmark-util"
project(':perfmark-api').projectDir = "$rootDir/api" as File
project(':perfmark-impl').projectDir = "$rootDir/impl" as File
project(':perfmark-java6').projectDir = "$rootDir/java6" as File
project(':perfmark-java7').projectDir = "$rootDir/java7" as File
project(':perfmark-java9').projectDir = "$rootDir/java9" as File
project(':perfmark-tracewriter').projectDir = "$rootDir/tracewriter" as File
project(':perfmark-agent').projectDir = "$rootDir/agent" as File
project(':perfmark-util').projectDir = "$rootDir/util" as File