configurations {
// Your existing configuration settings here
// e.g., implementation.canBeResolved = true
}
// Add this below to handle the JIT priority
configurations.all {
resolutionStrategy {
// Force the newer version of the interface
force 'com.citigroup:OESIntf3_8:3.8_A29-SNAPSHOT'
// Force the classpath order so the JIT sees OESIntf first
sortArtifacts({ a, b ->
if (a.name.contains("OESIntf3_8")) return -1
if (b.name.contains("OESIntf3_8")) return 1
return 0
} as Comparator)
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)