The following Publications section is created by Gradle when using the uploadArchives task and there are sources and javadoc artifacts included in the archives configuration.
<publications>
<artifact name="genesys-communicators" type="jar" ext="jar" conf="archives"/>
<artifact name="genesys-communicators" type="jar" ext="jar" conf="archives" classifier="javadoc"/>
<artifact name="genesys-communicators" type="jar" ext="jar" conf="archives" classifier="sources"/>
</publications>
The artifact tags include a classifier attribute. The Ivy documentation doesn't show a classifier attribute as a legal attribute for the artifact tag:
http://ant.apache.org/ivy/history/latest-milestone/ivyfile/artifact.html
|