From 2bf41e1622df70818f925aabafe16de082fa3884 Mon Sep 17 00:00:00 2001 From: Matthias Osswald Date: Mon, 1 Oct 2018 20:51:58 +0200 Subject: [PATCH] [FIX] processors/versionInfoGenerator: Remove "gav" property Currently the "gav" property isn't filled with any value, so it should not be added at all, as this currently causes issues when parsing the value at runtime (e.g. within the UI5 Demokit). This solves that issue but the "gav" property should anyway be discussed again. --- lib/processors/versionInfoGenerator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/processors/versionInfoGenerator.js b/lib/processors/versionInfoGenerator.js index db7dd2c7e..f1c37b557 100644 --- a/lib/processors/versionInfoGenerator.js +++ b/lib/processors/versionInfoGenerator.js @@ -23,7 +23,7 @@ module.exports = async function({options}) { version: options.rootProjectVersion, // TODO: insert current application version here buildTimestamp: buildTimestamp, scmRevision: "", // TODO: insert current application scm revision here - gav: "", // TODO: insert current application id + version here + // gav: "", // TODO: insert current application id + version here libraries: options.libraryInfos.map(function(libraryInfo) { return { name: libraryInfo.name,