-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle
34 lines (31 loc) · 1.25 KB
/
settings.gradle
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
33
34
// This pluginManagement block is needed for resolving the test-runner plugin.
// It has to live in settings even though it only applies to the integration project.
pluginManagement {
repositories {
resolutionStrategy {
eachPlugin {
if (requested.id.namespace == 'bio.terra') {
if (requested.id.id == 'bio.terra.test-runner-plugin' || requested.id.id == 'bio.terra.test-runner-echo-plugin') {
useModule("bio.terra:terra-test-runner:" + requested.version)
}
}
}
}
maven {
url "https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot-local/"
}
gradlePluginPortal()
}
}
rootProject.name = 'terra-workspace-manager'
include 'openapi'
include 'client'
include 'service'
include 'integration'
include 'azureDatabaseUtils'
// -- Global Variables --
// For defining shared state and common dependencies
gradle.ext.wsmVersion = "0.254.1161-SNAPSHOT"
// Single place to define the versions of dependencies shared between components.
gradle.ext.librarySwaggerAnnotations = "io.swagger.core.v3:swagger-annotations:2.2.25"
gradle.ext.librarySwaggerCli = "io.swagger.codegen.v3:swagger-codegen-cli:3.0.56"