-
Type:
Bug
-
Status: Resolved
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 0.9-rc-1
When adding sources and javadoc artifacts to the archives configuration the type attribute of the artifact tag is not set appropriately. Instead a non-existent classifer attribute is added (see GRADLE-936).
Here is what is produced now:
<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>
Here is the expected output:
<publications> <artifact name="genesys-communicators" type="jar" ext="jar" conf="archives"/> <artifact name="genesys-communicators" type="javadoc" ext="jar" conf="archives"/> <artifact name="genesys-communicators" type="source" ext="jar" conf="archives"/> </publications>