[
https://issues.apache.org/jira/browse/MNG-6363?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Karl Heinz Marbaise updated MNG-6363:
-------------------------------------
Description:
Currently the code of Maven core {{MavenCli}} contains something like this:
{code:java}
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
{code}
We should remove the {{THREADS_DEPRECATED}} part here.
was:
Currently the code of Maven core {{MavenCli}} contains something like this:
{code:java}
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
{code:java}
We should remove the {{THREADS_DEPRECATED}} part here.
> Remove secret thread configuration property from code
> -----------------------------------------------------
>
> Key: MNG-6363
> URL: https://issues.apache.org/jira/browse/MNG-6363
> Project: Maven
> Issue Type: Improvement
> Components: Command Line
> Affects Versions: 3.5.3
> Reporter: Karl Heinz Marbaise
> Assignee: Karl Heinz Marbaise
> Priority: Minor
> Fix For: 3.5.3
>
>
> Currently the code of Maven core {{MavenCli}} contains something like this:
> {code:java}
> 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
> {code}
> We should remove the {{THREADS_DEPRECATED}} part here.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)