We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2112253 commit b80789cCopy full SHA for b80789c
1 file changed
api/build.gradle
@@ -49,6 +49,12 @@ List runtime = [
49
"com.google.code.kaptcha:kaptcha:${kaptchaVersion}",
50
]
51
52
+configurations.configureEach {
53
+ // spring-ai pulls in spring-boot and tomcat-embed. We don't want multiple copies of these dependencies, especially
54
+ // versions that conflict with those in our embedded jar.
55
+ exclude group: "org.springframework.boot"
56
+}
57
+
58
configurations {
59
// Exclude the bundled org.json library from com.fasterxml.jackson.datatype:jackson-datatype-json-org dependency
60
all*.exclude group: "org.apache.geronimo.bundles", module: "json"
0 commit comments