Start building against Spring Framework 6.1.0 snapshots
See gh-37231
This commit is contained in:
parent
4b0c8eba4c
commit
02fd570b7d
|
|
@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
|
||||||
|
|
||||||
kotlinVersion=1.9.10
|
kotlinVersion=1.9.10
|
||||||
nativeBuildToolsVersion=0.9.24
|
nativeBuildToolsVersion=0.9.24
|
||||||
springFrameworkVersion=6.1.0-M4
|
springFrameworkVersion=6.1.0-SNAPSHOT
|
||||||
tomcatVersion=10.1.12
|
tomcatVersion=10.1.12
|
||||||
|
|
||||||
kotlin.stdlib.default.dependency=false
|
kotlin.stdlib.default.dependency=false
|
||||||
|
|
|
||||||
|
|
@ -49,8 +49,10 @@ class ConfigDataLocationRuntimeHints implements RuntimeHintsRegistrar {
|
||||||
logger.debug("Registering application configuration hints for " + fileNames + "(" + extensions + ") at "
|
logger.debug("Registering application configuration hints for " + fileNames + "(" + extensions + ") at "
|
||||||
+ locations);
|
+ locations);
|
||||||
}
|
}
|
||||||
new FilePatternResourceHintsRegistrar(fileNames, locations, extensions).registerHints(hints.resources(),
|
FilePatternResourceHintsRegistrar.forClassPathLocations(locations.toArray(new String[0]))
|
||||||
classLoader);
|
.withFilePrefixes(fileNames.toArray(new String[0]))
|
||||||
|
.withFileExtensions(extensions.toArray(new String[0]))
|
||||||
|
.registerHints(hints.resources(), classLoader);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue