Fixing docs publishing issue on Artifactory

In the build-helper-maven plugin, change the file extension type from
`zip;zip.type=docs;zip.deployed=false` to simply `zip`.
This former extension potentially causes the docs publishing incorrectly on Artifactory.
This commit is contained in:
Soby Chacko
2018-07-09 09:53:16 -04:00
parent 933214e8e3
commit 24fc3e260d

View File

@@ -360,7 +360,7 @@
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.zip</file>
<type>zip;zip.type=docs;zip.deployed=false</type>
<type>zip</type>
</artifact>
</artifacts>
</configuration>