Failed to write pom.xml file android

Can't push to android library on maven. It gives the following error. "Unable to edit file /../../ pom.xml" .... Thrown by InvalidUserDataException: Configuration mapping to scope is not unique . Please, help.

+3


source to share


1 answer


The problem is with version and scope matching when you update your pom file. If multiple mappings are selected for the same dependencies, an exception is thrown. You can see its unique property mapping in spring here . For Android, you must use an updated version of the standard maven Android Maven Plugin .



This may help you Repository link and integration details .

0


source







All Articles