-
Notifications
You must be signed in to change notification settings - Fork 920
Expand file tree
/
Copy pathsettings.gradle
More file actions
32 lines (28 loc) · 1.03 KB
/
settings.gradle
File metadata and controls
32 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
def tcsRepository = System.getenv("GITREPO_TSUNAMI_TCS") ?: "https://github.com/google/tsunami-security-scanner-callback-server.git"
sourceControl {
gitRepository("${tcsRepository}") {
producesModule("com.google.tsunami:tcs-common")
producesModule("com.google.tsunami:tcs-proto")
}
}