File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 11version =3.4.0-SNAPSHOT
2- springBootVersion =3.4.0-M3
2+ springBootVersion =3.4.0
33nativeBuildToolsVersion =0.10.1
4- commonsIoVersion =2.11 .0
4+ commonsIoVersion =2.18 .0
55jlineVersion =3.26.3
6- st4Version =4.3.3
6+ st4Version =4.3.4
77jimfsVersion =1.2
88gradleEnterpriseVersion =3.16.2
99springGeConventionsVersion =0.0.15
1010findbugsVersion =3.0.2
1111org.gradle.caching =true
12+ includeFfm =false
Original file line number Diff line number Diff line change @@ -49,12 +49,18 @@ include 'spring-shell-table'
4949include ' spring-shell-test'
5050include ' spring-shell-test-autoconfigure'
5151
52+ def ffm = settings. properties. hasProperty(' includeFfm' ) && settings. properties. property(' includeFfm' ). asBoolean()
53+
5254file(" ${ 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+ }
5458}
5559
5660file(" ${ 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+ }
5864}
5965
6066rootProject. children. each { project ->
You can’t perform that action at this time.
0 commit comments