File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
version =3.4.0-SNAPSHOT
2
- springBootVersion =3.4.0-M3
2
+ springBootVersion =3.4.0
3
3
nativeBuildToolsVersion =0.10.1
4
- commonsIoVersion =2.11 .0
4
+ commonsIoVersion =2.18 .0
5
5
jlineVersion =3.26.3
6
- st4Version =4.3.3
6
+ st4Version =4.3.4
7
7
jimfsVersion =1.2
8
8
gradleEnterpriseVersion =3.16.2
9
9
springGeConventionsVersion =0.0.15
10
10
findbugsVersion =3.0.2
11
11
org.gradle.caching =true
12
+ includeFfm =false
Original file line number Diff line number Diff line change @@ -49,12 +49,18 @@ include 'spring-shell-table'
49
49
include ' spring-shell-test'
50
50
include ' spring-shell-test-autoconfigure'
51
51
52
+ def ffm = settings. properties. hasProperty(' includeFfm' ) && settings. properties. property(' includeFfm' ). asBoolean()
53
+
52
54
file(" ${ rootDir} /spring-shell-starters" ). eachDirMatch(~/ spring-shell-starter.*/ ) {
53
- include " spring-shell-starters:${ it.name} "
55
+ if ((! it. name. endsWith(' ffm' ) && ! ffm) || ffm) { // skipping
56
+ include " spring-shell-starters:${ it.name} "
57
+ }
54
58
}
55
59
56
60
file(" ${ rootDir} /spring-shell-samples" ). eachDirMatch(~/ spring-shell-sample.*/ ) {
57
- include " spring-shell-samples:${ it.name} "
61
+ if ((! it. name. endsWith(' ffm' ) && ! ffm) || ffm) { // skipping
62
+ include " spring-shell-samples:${ it.name} "
63
+ }
58
64
}
59
65
60
66
rootProject. children. each { project ->
You can’t perform that action at this time.
0 commit comments