File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,10 @@ dependencies {
112
112
// Additional rule to revert the effect of the plugin on 'javax.xml.stream:stax-api'
113
113
allVariants {
114
114
withCapabilities {
115
- removeCapability(CapabilityDefinition.STAX_API.group, CapabilityDefinition.STAX_API.capabilityName)
115
+ removeCapability(
116
+ CapabilityDefinition.STAX_API.group,
117
+ CapabilityDefinition.STAX_API.capabilityName
118
+ )
116
119
}
117
120
}
118
121
}
@@ -159,14 +162,18 @@ You add the `asm:asm` capability as follows:
159
162
configurations {
160
163
apiElements {
161
164
outgoing {
162
- capability("${project.group}:${project.name}:${project.version}") // keep default capability 'org.ow2.asm:asm'
163
- capability("asm:asm:${project.version}") // add 'asm:asm'
165
+ // keep default capability 'org.ow2.asm:asm'
166
+ capability("${project.group}:${project.name}:${project.version}")
167
+ // add 'asm:asm'
168
+ capability("asm:asm:${project.version}")
164
169
}
165
170
}
166
171
runtimeElements {
167
172
outgoing {
168
- capability("${project.group}:${project.name}:${project.version}") // keep default capability 'org.ow2.asm:asm'
169
- capability("asm:asm:${project.version}") // add 'asm:asm'
173
+ // keep default capability 'org.ow2.asm:asm'
174
+ capability("${project.group}:${project.name}:${project.version}")
175
+ // add 'asm:asm'
176
+ capability("asm:asm:${project.version}")
170
177
}
171
178
}
172
179
}
You can’t perform that action at this time.
0 commit comments