mvnd fails when version range is used in extensions.xml, fixes #275

This commit is contained in:
Guillaume Nodet
2020-12-18 08:38:24 +01:00
parent 6ca5d77402
commit 1302ab3a28
4 changed files with 4 additions and 4 deletions

View File

@@ -361,7 +361,7 @@ public class DaemonParameters {
List<String> extensions = readCoreExtensionsDescriptor(multiModuleProjectDirectory()).stream()
.map(e -> e.getGroupId() + ":" + e.getArtifactId() + ":" + e.getVersion())
.collect(Collectors.toList());
return String.join(",", extensions);
return String.join(";", extensions);
} catch (IOException | XmlPullParserException e) {
throw new RuntimeException("Unable to parse core extensions", e);
}