You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2018/03/08 12:48:24 UTC

svn commit: r1826217 - /maven/site/trunk/content/markdown/docs/3.5.3/release-notes.md

Author: stephenc
Date: Thu Mar  8 12:48:24 2018
New Revision: 1826217

URL: http://svn.apache.org/viewvc?rev=1826217&view=rev
Log:
formatting

Modified:
    maven/site/trunk/content/markdown/docs/3.5.3/release-notes.md

Modified: maven/site/trunk/content/markdown/docs/3.5.3/release-notes.md
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/docs/3.5.3/release-notes.md?rev=1826217&r1=1826216&r2=1826217&view=diff
==============================================================================
--- maven/site/trunk/content/markdown/docs/3.5.3/release-notes.md (original)
+++ maven/site/trunk/content/markdown/docs/3.5.3/release-notes.md Thu Mar  8 12:48:24 2018
@@ -42,19 +42,19 @@ We really value the contributions of the
 
 Bugs:
 
-- [MNG-6323] reporter: Ben Caradoc-Davies
-- [MNG-6320] reporter: Eugene Pliskin
-- [MNG-6300] reporter: Andreas Kurth
-- [MNG-6298] reporter: Ryan Heaton
-- [MNG-6296] reporter: Robin Müller
-- [MNG-6282] reporter: Dejan Stojadinović
-- [MNG-6255] reporter: Andrew Kennedy
+- [MNG-6323][] reporter: Ben Caradoc-Davies
+- [MNG-6320][] reporter: Eugene Pliskin
+- [MNG-6300][] reporter: Andreas Kurth
+- [MNG-6298][] reporter: Ryan Heaton
+- [MNG-6296][] reporter: Robin Müller
+- [MNG-6282][] reporter: Dejan Stojadinović
+- [MNG-6255][] reporter: Andrew Kennedy
 
 Improvements:
 
-- [MNG-6340] reporter: Tony Guan
-- [MNG-6306] reporter: Andy Wilkinson
-- [MNG-5992] reporter: Ryan J. McDonough
+- [MNG-6340][] reporter: Tony Guan
+- [MNG-6306][] reporter: Andy Wilkinson
+- [MNG-5992][] reporter: Ryan J. McDonough
 
 Many thanks to all reporters and contributors for their time and support.
 
@@ -64,25 +64,25 @@ Thank you also for your time and feedbac
 
 ## Known Issues
 
-One new issue was identified during the release testing. This issue affects Windows users. When running Maven with parallel threads, i.e. the `-T` command line option, Maven may output spurious ANSI escapes such as `[0m [0m` [MNG-6372]
+One new issue was identified during the release testing. This issue affects Windows users. When running Maven with parallel threads, i.e. the `-T` command line option, Maven may output spurious ANSI escapes such as `[0m [0m` [MNG-6372][]
 
 ## Overview about the changes
 
-- Issues have been fixed related to colorizations like to clean up the situation while interrupting the build process [MNG-6188] and some issues related to Git Bash / Cygwin have been fixed [MNG-6282] and the new options `-Dstyle.color` [MNG-6296] has been fixed.
+- Issues have been fixed related to colorizations like to clean up the situation while interrupting the build process [MNG-6188][] and some issues related to Git Bash / Cygwin have been fixed [MNG-6282][] and the new options `-Dstyle.color` [MNG-6296][] has been fixed.
 
-- The handling CRLF in `jvm.config` file has been fixed [MNG-6255].
+- The handling CRLF in `jvm.config` file has been fixed [MNG-6255][].
 
-- The wrong usage of the CI friendly version was not correctly identified which has been improved [MNG-6305].
+- The wrong usage of the CI friendly version was not correctly identified which has been improved [MNG-6305][].
 
-- Wrong encoding of non-ascii filenames has been fixed [MNG-6320].
+- Wrong encoding of non-ascii filenames has been fixed [MNG-6320][].
 
-- Deadlock in dependency resolution has been fixed [MNG-6323].
+- Deadlock in dependency resolution has been fixed [MNG-6323][].
 
-- A regression related to parents `relativePath` verification has been fixed [MNG-6330]
+- A regression related to parents `relativePath` verification has been fixed [MNG-6330][].
 
 So now some more interesting things about new (small) features:
 
-- The log output contains now some progress informations related to the number of modules which looks like this [MNG-6302]:
+- The log output contains now some progress informations related to the number of modules which looks like this [MNG-6302][]:
 
   ```
   [INFO] Building parent 5.0.1-SNAPSHOT                                     [1/9]
@@ -90,7 +90,7 @@ So now some more interesting things abou
 
   The number `1` is the current number which is being built where the `9` in this case is the number of modules which have to be built overall. So we are in module 1 of 9.
 
-  Furthermore the information about the packaging type and the groupId/artifactId are now being shown during the build like the following [MNG-6308]:
+  Furthermore the information about the packaging type and the groupId/artifactId are now being shown during the build like the following [MNG-6308][]:
 
   ```
   [INFO] ------------------< com.soebes.examples.j2ee:parent >-------------------
@@ -119,7 +119,7 @@ So now some more interesting things abou
 
   This can be helpful if you have a large number of modules to get the information about the version being built. This meant in the past to scroll up to the last module and look there for the version. Now this can simply being seen at the end of build. If you have a multi module build where the number is the same for all modules it will be given only on the first line and the last line. If you have an aggregator build the version will be printed out for each project.
 
-- One more thing has been optimized. We have removed the `System.gc()` call at the end of the build because this can cause costs for example on AWS systems related to the time taken to run Garbage Collection which is not really necessary [MNG-6340]. This means also the resulting output will change a little bit like this:
+- One more thing has been optimized. We have removed the `System.gc()` call at the end of the build because this can cause costs for example on AWS systems related to the time taken to run Garbage Collection which is not really necessary [MNG-6340][]. This means also the resulting output will change a little bit like this:
 
   ```
   [INFO] ------------------------------------------------------------------------
@@ -132,46 +132,46 @@ So now some more interesting things abou
 
   So there is no line anymore telling you about memory stuff.
 
-- If you have used the deprecated version markers like `RELEASE` or `LATEST` this will now produce a WARNING during the build [MNG-6342].
+- If you have used the deprecated version markers like `RELEASE` or `LATEST` this will now produce a WARNING during the build [MNG-6342][].
 
 ## [The detailed issue list](#Details)
 
 Bugs:
 
-- [MNG-6188] - Console color not properly reset when interrupting build process
-- [MNG-6255] - Maven script cannot parse `jvm.config` with CRLF
-- [MNG-6282] - Console output has no colors in shell (both Git Bash and Cygwin) (regression in Jansi 1.16 / Maven 3.5.1)
-- [MNG-6296] - New option `-Dstyle.color` is not working
-- [MNG-6298] - 3.5.2: `ClassNotFoundException: javax.annotation.security.RolesAllowed`
-- [MNG-6300] - Multi module release creates empty directories in war file instead of jars
-- [MNG-6305] - Validation of CI friendly version incorrect
-- [MNG-6320] - Apparently wrong encoding of non-ascii java class filename in error messages in the maven log
-- [MNG-6323] - Deadlock in multithreaded dependency resolution
-- [MNG-6330] - (regression) Parents relativePath not verified anymore
-
-New Feature:
-
-- [MNG-6302] - Provide some "progress" hints
-
-Improvements:
-
-- [MNG-5992] - Git passwords are exposed as the Super POM still uses Maven Release Plugin 2.3.2
-- [MNG-6306] - Replace use of Guava in maven-resolver-provider with a lighter weight alternative
-- [MNG-6308] - display packaging & groupId:artifactId when building a module
-- [MNG-6332] - Cleaned up `mvn.cmd` Script
-- [MNG-6340] - (Performance) To make `System.gc()` call configurable in target summary code
-- [MNG-6342] - Emit a WARNING about LATEST/RELEASE in parent
-- [MNG-6352] - Printout version information at the end of the build
-
-Task:
-
-- [MNG-6331] - Remove maven-bundle-pugin from build pluginManagement
-
-Dependency upgrade:
-
-- [MNG-6312] - Update Maven Wagon dependency
-- [MNG-6335] - Update test framework Mockito from 1.10 to 2.12
-- [MNG-6353] - Upgrade maven-shared-utils to 3.2.1
+- [MNG-6188][] - Console color not properly reset when interrupting build process
+- [MNG-6255][] - Maven script cannot parse `jvm.config` with CRLF
+- [MNG-6282][] - Console output has no colors in shell (both Git Bash and Cygwin) (regression in Jansi 1.16 / Maven 3.5.1)
+- [MNG-6296][] - New option `-Dstyle.color` is not working
+- [MNG-6298][] - 3.5.2: `ClassNotFoundException: javax.annotation.security.RolesAllowed`
+- [MNG-6300][] - Multi module release creates empty directories in war file instead of jars
+- [MNG-6305][] - Validation of CI friendly version incorrect
+- [MNG-6320][] - Apparently wrong encoding of non-ascii java class filename in error messages in the maven log
+- [MNG-6323][] - Deadlock in multithreaded dependency resolution
+- [MNG-6330][] - (regression) Parents relativePath not verified anymore
+
+### New Feature
+
+- [MNG-6302][] - Provide some "progress" hints
+
+### Improvements
+
+- [MNG-5992][] - Git passwords are exposed as the Super POM still uses Maven Release Plugin 2.3.2
+- [MNG-6306][] - Replace use of Guava in maven-resolver-provider with a lighter weight alternative
+- [MNG-6308][] - display packaging & groupId:artifactId when building a module
+- [MNG-6332][] - Cleaned up `mvn.cmd` Script
+- [MNG-6340][] - (Performance) To make `System.gc()` call configurable in target summary code
+- [MNG-6342][] - Emit a WARNING about LATEST/RELEASE in parent
+- [MNG-6352][] - Printout version information at the end of the build
+
+### Task
+
+- [MNG-6331][] - Remove maven-bundle-pugin from build pluginManagement
+
+### Dependency upgrade
+
+- [MNG-6312][] - Update Maven Wagon dependency
+- [MNG-6335][] - Update test framework Mockito from 1.10 to 2.12
+- [MNG-6353][] - Upgrade maven-shared-utils to 3.2.1
 
 The full list of changes can be found in our [issue management system](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&version=12341428).
 
@@ -184,26 +184,26 @@ See [complete release notes for all vers
 [2]: https://maven.apache.org/
 [4]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12316922&amp;version=12341428
 [5]: ../../docs/history.html
-[mng-5992]: https://issues.apache.org/jira/browse/MNG-5992
-[mng-6188]: https://issues.apache.org/jira/browse/MNG-6188
-[mng-6255]: https://issues.apache.org/jira/browse/MNG-6255
-[mng-6282]: https://issues.apache.org/jira/browse/MNG-6282
-[mng-6296]: https://issues.apache.org/jira/browse/MNG-6296
-[mng-6298]: https://issues.apache.org/jira/browse/MNG-6298
-[mng-6300]: https://issues.apache.org/jira/browse/MNG-6300
-[mng-6302]: https://issues.apache.org/jira/browse/MNG-6302
-[mng-6305]: https://issues.apache.org/jira/browse/MNG-6305
-[mng-6306]: https://issues.apache.org/jira/browse/MNG-6306
-[mng-6308]: https://issues.apache.org/jira/browse/MNG-6308
-[mng-6312]: https://issues.apache.org/jira/browse/MNG-6312
-[mng-6320]: https://issues.apache.org/jira/browse/MNG-6320
-[mng-6323]: https://issues.apache.org/jira/browse/MNG-6323
-[mng-6330]: https://issues.apache.org/jira/browse/MNG-6330
-[mng-6331]: https://issues.apache.org/jira/browse/MNG-6331
-[mng-6332]: https://issues.apache.org/jira/browse/MNG-6332
-[mng-6335]: https://issues.apache.org/jira/browse/MNG-6335
-[mng-6340]: https://issues.apache.org/jira/browse/MNG-6340
-[mng-6342]: https://issues.apache.org/jira/browse/MNG-6342
-[mng-6352]: https://issues.apache.org/jira/browse/MNG-6352
-[mng-6353]: https://issues.apache.org/jira/browse/MNG-6353
-[mng-6372]: https://issues.apache.org/jira/browse/MNG-6372
+[MNG-5992]: https://issues.apache.org/jira/browse/MNG-5992
+[MNG-6188]: https://issues.apache.org/jira/browse/MNG-6188
+[MNG-6255]: https://issues.apache.org/jira/browse/MNG-6255
+[MNG-6282]: https://issues.apache.org/jira/browse/MNG-6282
+[MNG-6296]: https://issues.apache.org/jira/browse/MNG-6296
+[MNG-6298]: https://issues.apache.org/jira/browse/MNG-6298
+[MNG-6300]: https://issues.apache.org/jira/browse/MNG-6300
+[MNG-6302]: https://issues.apache.org/jira/browse/MNG-6302
+[MNG-6305]: https://issues.apache.org/jira/browse/MNG-6305
+[MNG-6306]: https://issues.apache.org/jira/browse/MNG-6306
+[MNG-6308]: https://issues.apache.org/jira/browse/MNG-6308
+[MNG-6312]: https://issues.apache.org/jira/browse/MNG-6312
+[MNG-6320]: https://issues.apache.org/jira/browse/MNG-6320
+[MNG-6323]: https://issues.apache.org/jira/browse/MNG-6323
+[MNG-6330]: https://issues.apache.org/jira/browse/MNG-6330
+[MNG-6331]: https://issues.apache.org/jira/browse/MNG-6331
+[MNG-6332]: https://issues.apache.org/jira/browse/MNG-6332
+[MNG-6335]: https://issues.apache.org/jira/browse/MNG-6335
+[MNG-6340]: https://issues.apache.org/jira/browse/MNG-6340
+[MNG-6342]: https://issues.apache.org/jira/browse/MNG-6342
+[MNG-6352]: https://issues.apache.org/jira/browse/MNG-6352
+[MNG-6353]: https://issues.apache.org/jira/browse/MNG-6353
+[MNG-6372]: https://issues.apache.org/jira/browse/MNG-6372