In order to publish to a repository in Maven format ,“maven-publish” plugin for gradle can be used.
The plugin should be added to build.gradle file in library module.
apply plugin: 'maven-publish'
You should define the publication and its identity attributes in build.gradle file too.
This iden...