You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/04/22 20:58:08 UTC

[maven] branch MNG-6363 updated (2b80f4e -> 9c118d3)

This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MNG-6363
in repository https://gitbox.apache.org/repos/asf/maven.git.


 discard 2b80f4e  [MNG-6363] - Remove secret thread configuration property from code
     add fef1462  [MNG-6362] - Adding CONTRIBUTING, README.md pull_request_template for GitHub.
     add 0dbdda8  Add .factorypath from m2e to .gitignore
     add ef41c0e  updated model version to latest 1.1.0
     new 9c118d3  [MNG-6363] - Remove secret thread configuration property from code

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2b80f4e)
            \
             N -- N -- N   refs/heads/MNG-6363 (9c118d3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/pull_request_template.md         | 30 +++++++++++
 CONTRIBUTING.md                          | 92 ++++++++++++++++++++++++++++++++
 README.md                                | 89 ++++++++++++++++++++++++------
 maven-settings/src/main/mdo/settings.mdo |  4 --
 maven-settings/src/site/apt/index.apt    |  2 +-
 5 files changed, 197 insertions(+), 20 deletions(-)
 create mode 100644 .github/pull_request_template.md
 create mode 100644 CONTRIBUTING.md

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.

[maven] 01/01: [MNG-6363] - Remove secret thread configuration property from code

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MNG-6363
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 9c118d34c905a16dcc85ccf4252f16e8ceabd7a3
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Feb 17 14:48:16 2018 +0100

    [MNG-6363] - Remove secret thread configuration property from code
---
 maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java b/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
index c7e5d9e..7b5d97b 100644
--- a/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
+++ b/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
@@ -124,8 +124,6 @@ public class MavenCli
 {
     public static final String LOCAL_REPO_PROPERTY = "maven.repo.local";
 
-    public static final String THREADS_DEPRECATED = "maven.threads.experimental";
-
     public static final String MULTIMODULE_PROJECT_DIRECTORY = "maven.multiModuleProjectDirectory";
 
     public static final String USER_HOME = System.getProperty( "user.home" );
@@ -1548,8 +1546,7 @@ public class MavenCli
         //
         final String threadConfiguration = commandLine.hasOption( CLIManager.THREADS )
             ? commandLine.getOptionValue( CLIManager.THREADS )
-            : request.getSystemProperties().getProperty(
-                MavenCli.THREADS_DEPRECATED ); // TODO Remove this setting. Note that the int-tests use it
+            : null;
 
         if ( threadConfiguration != null )
         {

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.