Example usage for org.apache.maven.cli CLIManager LEGACY_LOCAL_REPOSITORY

List of usage examples for org.apache.maven.cli CLIManager LEGACY_LOCAL_REPOSITORY

Introduction

In this page you can find the example usage for org.apache.maven.cli CLIManager LEGACY_LOCAL_REPOSITORY.

Prototype

String LEGACY_LOCAL_REPOSITORY

To view the source code for org.apache.maven.cli CLIManager LEGACY_LOCAL_REPOSITORY.

Click Source Link

Usage

From source file:org.kie.workbench.common.services.backend.compiler.external339.AFMavenCli.java

License:Apache License

protected void repository(AFCliRequest cliRequest) throws Exception {
    if (cliRequest.getCommandLine().hasOption(CLIManager.LEGACY_LOCAL_REPOSITORY)
            || Boolean.getBoolean("maven.legacyLocalRepo")) {
        cliRequest.getRequest().setUseLegacyLocalRepository(true);
    }//from   w w w.ja  v a  2s.  c om
}