- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for parserRequest (0.15 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
* This interface encapsulates all the necessary information needed to parse * Maven commands and arguments into an {@link InvokerRequest}. * * @since 4.0.0 */ @Immutable @Experimental public interface ParserRequest { String MVN_CMD = "mvn"; String MVN_NAME = "Maven"; String MVNENC_CMD = "mvnenc"; String MVNENC_NAME = "Maven Password Encrypting Tool"; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 04 12:23:10 UTC 2024 - 13.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/forked/ForkedMavenParser.java
/** * Parses the given ParserRequest to create a ForkedMavenInvokerRequest. * This method is responsible for interpreting the contents of the ParserRequest * and constructing the appropriate ForkedMavenInvokerRequest object for forked Maven operations. * * @param parserRequest the request containing all necessary information for parsing
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/EncryptParser.java
public interface EncryptParser extends Parser<EncryptInvokerRequest> { /** * Parses the given ParserRequest to create an EncryptInvokerRequest. * This method is responsible for interpreting the contents of the ParserRequest * and constructing the appropriate EncryptInvokerRequest object for encryption operations. * * @param parserRequest the request containing all necessary information for parsing
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java
return parse(ParserRequest.mvn(args, logger, messageBuilderFactory).build()); } /** * Parses the given ParserRequest to create an InvokerRequest. * This method is responsible for interpreting the contents of the ParserRequest * and constructing the appropriate InvokerRequest object. * * @param parserRequest the request containing all necessary information for parsing
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 04 12:23:10 UTC 2024 - 3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseInvokerRequest.java
import org.apache.maven.api.cli.Options; import org.apache.maven.api.cli.ParserRequest; import org.apache.maven.api.cli.extensions.CoreExtension; import static java.util.Objects.requireNonNull; public abstract class BaseInvokerRequest<T extends Options> implements InvokerRequest<T> { private final ParserRequest parserRequest; private final Path cwd; private final Path installationDirectory;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptParser.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenParser.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvokerRequest.java
implements MavenInvokerRequest<O> { private final O options; @SuppressWarnings("ParameterNumber") public DefaultMavenInvokerRequest( ParserRequest parserRequest, Path cwd, Path installationDirectory, Path userHomeDirectory, Map<String, String> userProperties, Map<String, String> systemProperties,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
@SuppressWarnings("VisibilityModifier") public static class LocalContext { public final ParserRequest parserRequest; public final Map<String, String> systemPropertiesOverrides; public LocalContext(ParserRequest parserRequest) { this.parserRequest = parserRequest; this.systemPropertiesOverrides = new HashMap<>(); } public Path cwd;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
*/ @Nonnull ParserRequest parserRequest(); /** * Shorthand for {@link Logger} to use. */ default Logger logger() { return parserRequest().logger(); } /** * Shorthand for {@link MessageBuilderFactory}. */ default MessageBuilderFactory messageBuilderFactory() { return parserRequest().messageBuilderFactory(); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 08:06:47 UTC 2024 - 5.2K bytes - Viewed (0)