-
Notifications
You must be signed in to change notification settings - Fork 30
/
settings.gradle
65 lines (54 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
pluginManagement {
repositories {
gradlePluginPortal() {
content {
excludeGroupByRegex 'com\\.brightspot($|\\..+)'
excludeGroupByRegex 'com\\.psddev($|\\..+)'
}
}
maven {
url 'https://artifactory.psdops.com/public'
}
}
}
plugins {
id "com.gradle.enterprise" version "3.15.1"
id 'com.brightspot.gradle' version '1.1.1'
}
rootProject.name = 'brightspot-training'
brightspot {
projectGroup = 'com.brightspot-training'
versions {
brightspot = '4.7.11.1'
brightspotGo = '1.5.3'
sharedTests = '0.7.1'
componentLib = '4.5.24'
java = 11
}
dependencyConstraints = [
// dependency conflicts across Gradle configurations
'com.fasterxml.jackson.core:jackson-core': '2.11.0',
'com.google.api-client:google-api-client': '1.33.4',
'com.squareup.retrofit2:converter-jackson': '2.9.0',
'net.java.dev.jna:jna': '5.12.1', // fix Hunspell
]
dependencySubstitutions = [
'javax.inject:javax.inject': 'org.glassfish.hk2.external:javax.inject:_',
// Go's lib-util-auto-dependency-test uses the CL version
'com.psddev.component-lib:test-utils': 'com.brightspot.shared-tests:util-filtered-class-finder:0.7.1.2-xfea2e1', // from 0.7.1
]
}
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"
}
}