forked from joinfaces/joinfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
78 lines (66 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
plugins {
id "io.freefair.settings.plugin-versions" version "8.6"
id "com.gradle.enterprise" version "3.17.5"
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
rootProject.name = 'joinfaces-parent'
boolean isCiServer = System.getenv().containsKey("CI")
gradleEnterprise {
if (isCiServer) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}
buildCache {
remote(HttpBuildCache) {
url = 'https://build-cache.grefer-hosting.de/cache/'
push = isCiServer
credentials {
username = "joinfaces"
password = providers.gradleProperty('joinfacesBuildCachePassword').getOrElse(null)
}
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
}
include ':joinfaces'
include ':joinfaces-bom'
include ':joinfaces-dependencies'
include ':joinfaces-platform'
include ':joinfaces-documentation'
include ':joinfaces-test'
include ':joinfaces-security-taglib'
include ':joinfaces-autoconfigure'
include ':joinfaces-starters'
include ':joinfaces-starters:mojarra-spring-boot-starter'
include ':joinfaces-starters:mojarra3-spring-boot-starter'
include ':joinfaces-starters:mojarra4-spring-boot-starter'
include ':joinfaces-starters:myfaces-spring-boot-starter'
include ':joinfaces-starters:myfaces3-spring-boot-starter'
include ':joinfaces-starters:myfaces4-spring-boot-starter'
include ':joinfaces-starters:omnifaces-spring-boot-starter'
include ':joinfaces-starters:jsf-spring-boot-starter'
include ':joinfaces-starters:faces-spring-boot-starter'
include ':joinfaces-starters:security-spring-boot-starter'
include ':joinfaces-starters:primefaces-spring-boot-starter'
include ':joinfaces-starters:adminfaces-spring-boot-starter'
include ':joinfaces-starters:tobago-spring-boot-starter'
include ':joinfaces-starters:rewrite-spring-boot-starter'
include ':joinfaces-starters:cdi-spring-boot-starter'
include ':joinfaces-starters:weld-spring-boot-starter'
include ':joinfaces-starters:openwebbeans-spring-boot-starter'
include ':test-projects:tomcat-mojarra3'
include ':test-projects:tomcat-mojarra4'
include ':test-projects:tomcat-myfaces3'
include ':test-projects:tomcat-myfaces4'
include ':test-projects:jetty-mojarra'
include ':test-projects:jetty-myfaces'
include ':test-projects:undertow-mojarra'
include ':test-projects:undertow-myfaces'