What’s difficult about this? The compile
configuration is deprecated. The compileConfigurationName
property is literally the name of the compile
configuration. The compile
configuration name isn’t now implementation
. It’s an entirely new configuration. The compileConfigurationName
property is also deprecated. This code should move to use the implementation
equivalent just like everything else:
configurations.getByName( sourceSets.main.implementationConfigurationName ).extendsFrom(
configurations.getByName('myConfiguration')
)