forked from google/tsunami-security-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
23 lines (21 loc) · 743 Bytes
/
settings.gradle
File metadata and controls
23 lines (21 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pluginManagement {
plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'com.google.protobuf' version '0.8.12'
id 'net.ltgt.errorprone' version '1.1.1'
}
repositories {
gradlePluginPortal()
}
}
rootProject.name = 'tsunami'
include ':tsunami-common'
include ':tsunami-main'
include ':tsunami-plugin'
include ':tsunami-proto'
include ':tsunami-workflow'
project(':tsunami-common').projectDir = "$rootDir/common" as File
project(':tsunami-main').projectDir = "$rootDir/main" as File
project(':tsunami-plugin').projectDir = "$rootDir/plugin" as File
project(':tsunami-proto').projectDir = "$rootDir/proto" as File
project(':tsunami-workflow').projectDir = "$rootDir/workflow" as File