When running the gradle script it complains about an API it intends to remove:
The ConfigurationContainer.add() method has been deprecated and is scheduled to be removed in Gradle 2.0. Please use the create() method instead.
This happens when we use getConfigurations().add(...) instead of getConfigurations().create(...)
The ConfigurationContainer.add() method has been deprecated and is scheduled to be removed in Gradle 2.0. Please use the create() method instead.
This happens when we use getConfigurations().add(...) instead of getConfigurations().create(...)