Skip to content

Commit

Permalink
Update to Boot 3.4.0
Browse files Browse the repository at this point in the history
Update to Commons-IO 2.18.0
  • Loading branch information
Corneil du Plessis committed Dec 10, 2024
1 parent 094ffeb commit bec5185
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
version=3.4.0-SNAPSHOT
springBootVersion=3.4.0-M3
springBootVersion=3.4.0
nativeBuildToolsVersion=0.10.1
commonsIoVersion=2.11.0
commonsIoVersion=2.18.0
jlineVersion=3.26.3
st4Version=4.3.3
st4Version=4.3.4
jimfsVersion=1.2
gradleEnterpriseVersion=3.16.2
springGeConventionsVersion=0.0.15
findbugsVersion=3.0.2
org.gradle.caching=true
includeFfm=false
10 changes: 8 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,18 @@ include 'spring-shell-table'
include 'spring-shell-test'
include 'spring-shell-test-autoconfigure'

def ffm = settings.properties.hasProperty('includeFfm') && settings.properties.property('includeFfm').asBoolean()

file("${rootDir}/spring-shell-starters").eachDirMatch(~/spring-shell-starter.*/) {
include "spring-shell-starters:${it.name}"
if((!it.name.endsWith('ffm') && !ffm) || ffm) { // skipping
include "spring-shell-starters:${it.name}"
}
}

file("${rootDir}/spring-shell-samples").eachDirMatch(~/spring-shell-sample.*/) {
include "spring-shell-samples:${it.name}"
if((!it.name.endsWith('ffm') && !ffm) || ffm) { // skipping
include "spring-shell-samples:${it.name}"
}
}

rootProject.children.each { project ->
Expand Down

0 comments on commit bec5185

Please sign in to comment.