The plugin currently only works if you have a "default" configuration, and that is the only configuration you can use. Need to be able to specify a non-default. Gradle docs indicate you have to use the 'map notation'
dependencies {
runtime group: 'org.somegroup', name: 'somedependency', version: '1.0', configuration: 'someConfiguration'
}
The plugin currently only works if you have a "default" configuration, and that is the only configuration you can use. Need to be able to specify a non-default. Gradle docs indicate you have to use the 'map notation'
dependencies {
runtime group: 'org.somegroup', name: 'somedependency', version: '1.0', configuration: 'someConfiguration'
}