This is an automated email from the ASF dual-hosted git repository.
hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site.git
The following commit(s) were added to refs/heads/master by this push:
new 681300b [MNG-6059] complete release notes description of the
improvement
681300b is described below
commit 681300bb27db26c3f5620a759d3276eea7f97bfb
Author: Hervé Boutemy <[email protected]>
AuthorDate: Sat Jun 26 16:11:30 2021 +0200
[MNG-6059] complete release notes description of the improvement
---
content/markdown/docs/3.6.1/release-notes.md | 26 ++++++++++++++++++--------
1 file changed, 18 insertions(+), 8 deletions(-)
diff --git a/content/markdown/docs/3.6.1/release-notes.md
b/content/markdown/docs/3.6.1/release-notes.md
index 2e51757..ccb0158 100644
--- a/content/markdown/docs/3.6.1/release-notes.md
+++ b/content/markdown/docs/3.6.1/release-notes.md
@@ -166,17 +166,27 @@ mvn -ntp ... ....
```
- There had been an issues like [MNG-6505] and [MNG-6059] related to the
construction of
-URL's etc. within `distributionManagement` and `scm` part in the pom for multi
module
+URL's etc. within `project`, `distributionManagement` and `scm` part in the
pom for multi module
builds like this:
-
```
-<scm child.scm.connection.inherit.append.path="true"
- child.scm.developerConnection.inherit.append.path="true"
- child.scm.url.inherit.append.path="true" />
-<distributionManagement>
- <site child.site.url.inherit.append.path="true" />
- </distributionManagement>
+<project child.project.url.inherit.append.path="false">
+ <url>...</url>
+
+ <scm child.scm.connection.inherit.append.path="false"
+ child.scm.developerConnection.inherit.append.path="false"
+ child.scm.url.inherit.append.path="false">
+ <connection>...</connection>
+ <developerConnection>...</developerConnection>
+ <url>...</url>
+ </scm>
+
+ <distributionManagement>
+ <site child.site.url.inherit.append.path="false">
+ <url>...</url>
+ </site>
+ </distributionManagement>
+</project>
```
Detailed explanations can be found in [Inheritance
Assembly][inheritance-assembly] and in [MNG-6059]