Give spring-core access to org.jboss.vfs for VfsUtils support on WildFly

This commit gives spring-core access to the org.jboss.vfs module to make
VfsUtils work out of the box on WildFly 28+.

Closes gh-30973
This commit is contained in:
Philippe Marschall 2023-08-01 16:10:53 +02:00 committed by Sam Brannen
parent 7adacd5ce5
commit 4922e0e439
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ dependencies {
}
jar {
manifest.attributes["Dependencies"] = "jdk.unsupported" // for WildFly (-> Objenesis 3.2)
manifest.attributes["Dependencies"] = "jdk.unsupported,org.jboss.vfs" // for WildFly (Objenesis and VfsUtils)
dependsOn javapoetRepackJar
from(zipTree(javapoetRepackJar.archiveFile)) {