From 4922e0e439efc24d72b95976747e777c965f1947 Mon Sep 17 00:00:00 2001 From: Philippe Marschall Date: Tue, 1 Aug 2023 16:10:53 +0200 Subject: [PATCH] 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 --- spring-core/spring-core.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/spring-core.gradle b/spring-core/spring-core.gradle index a96bd47ebcd8..f2e109e49a58 100644 --- a/spring-core/spring-core.gradle +++ b/spring-core/spring-core.gradle @@ -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)) {