We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2f0e6 commit 5a63d20Copy full SHA for 5a63d20
1 file changed
build.gradle
@@ -65,6 +65,20 @@ dependencies {
65
pluginLibs libs.jackson.dataformat.yaml
66
implementation libs.snakeyaml
67
68
+ components {
69
+ withModule("org.rundeck.api:rd-api-client") {
70
+ allVariants {
71
+ withDependencies { deps ->
72
+ deps.removeAll { it.group == "com.squareup.retrofit2" && it.name == "converter-jaxb" }
73
+ deps.removeAll { it.group == "javax.xml.bind" && it.name == "jaxb-api" }
74
+ deps.removeAll { it.group == "javax.activation" && it.name == "javax.activation-api" }
75
+ }
76
77
78
79
+
80
+ implementation "com.squareup.retrofit2:converter-gson:2.11.0"
81
82
// Security: Explicit inclusion of secure versions
83
implementation libs.commons.lang3
84
implementation libs.commons.compress
0 commit comments