Skip to content

Commit

Permalink
Start building against Spring Framework 6.0.12 snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Sep 8, 2023
1 parent af72bf1 commit 4bd8c35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8

kotlinVersion=1.8.22
nativeBuildToolsVersion=0.9.24
springFrameworkVersion=6.0.11
springFrameworkVersion=6.0.12-SNAPSHOT
tomcatVersion=10.1.12

kotlin.stdlib.default.dependency=false
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
logger.debug("Registering application configuration hints for " + fileNames + "(" + extensions + ") at "
+ locations);
}
new FilePatternResourceHintsRegistrar(fileNames, locations, extensions).registerHints(hints.resources(),
classLoader);
FilePatternResourceHintsRegistrar.forClassPathLocations(locations)
.withFileExtensions(extensions)
.withFilePrefixes(fileNames)
.registerHints(hints.resources(), classLoader);
}

/**
Expand Down

0 comments on commit 4bd8c35

Please sign in to comment.