Working on an Android library with Gradle (v 1.7) as the building tool, I\'ve used the maven plugin and configured the task uploadArchives to publish both release and debug vers
You need(ed) to set the filter name for the groupId
and artifactId
the same as you have for version
pom('debug').groupId = 'com.company'
pom('release').groupId = 'com.company'
pom('debug').artifactId = 'id'
pom('release').artifactId = 'id'
pom('debug').version = android.defaultConfig.versionName + "d"
pom('release').version = android.defaultConfig.versionName
Im surprised you get away with the version name suffix, as its not semver.