forked from perfectsense/training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
53 lines (45 loc) · 1.24 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
pluginManagement {
repositories {
gradlePluginPortal() {
content {
excludeGroupByRegex 'com\\.brightspot($|\\..+)'
excludeGroupByRegex 'com\\.psddev($|\\..+)'
}
}
maven {
url 'https://artifactory.psdops.com/public'
}
}
}
plugins {
id "com.gradle.enterprise" version "3.1.1"
id 'com.brightspot.gradle' version '1.0.0-rc16'
}
rootProject.name = 'brightspot-training'
brightspot {
projectGroup = 'com.brightspot-training'
versions {
brightspot = '4.7.7'
brightspotGo = '1.5.1'
sharedTests = '0.6.1'
componentLib = '4.5.17'
java = 11
}
dependencySubstitutions = [
'javax.inject:javax.inject': 'org.glassfish.hk2.external:javax.inject:_'
]
}
include(':core')
include(':web')
include(':frontend')
include(':bundle-default')
project(':core').projectDir = file('core')
project(':web').projectDir = file('web')
project(':frontend').projectDir = file('frontend')
project(':bundle-default').projectDir = file('frontend/bundles/bundle-default')
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}