mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-09-09 15:09:23 +00:00
mvnd fails when version range is used in extensions.xml, fixes #275
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user