Reference the (new) correct URL for the MANIFEST.MF in Artifactory

Prior to this, generated URLs were resulting in 404s for me. Must have been an
upgrade in Artifactory's hosted service offering that changed this behavior.
This commit is contained in:
R. Tyler Croy 2018-10-19 12:15:55 -07:00
parent 1fa99a8069
commit 904ff0d8e1
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ class ManifestResolver {
*/
fetchManifestForPlugin(plugin) {
const start = Date.now();
const url = `${UrlResolver.artifactForPlugin(plugin)}!META-INF/MANIFEST.MF`;
const url = `${UrlResolver.artifactForPlugin(plugin)}!/META-INF/MANIFEST.MF`;
return request({
uri: url,